window.addEvent('load', function() {
	var currentForm = 0;
	var forms = 0;
	$$('.form-link').each(function(link){
		forms++;
		link.id = "form"+forms;
		link.addEvent('click',function(e){
			if(currentForm != 0)
			{
				$('form'+currentForm).style.fontSize = "13px";
				$('form'+currentForm).style.fontWeight = "normal";
				$('form'+currentForm).style.color = "#000";
				$('form'+currentForm).style.background = "none";
				$('form'+currentForm).style.paddingRight = "0px";
			}
			currentForm = link.id.replace("form","");
			$('form'+currentForm).style.fontSize = "14px";
			$('form'+currentForm).style.fontWeight = "bold";
			$('form'+currentForm).style.color = "#589199";
			$('form'+currentForm).style.background = "url(images/blue-arrow.jpg) no-repeat right -4px";
			$('form'+currentForm).style.paddingRight = "14px";
		});
		link.addEvent('mouseenter',function(e){
			link.style.color = "#589199";
			link.style.background = "url(images/blue-arrow.jpg) no-repeat right -4px";
			link.style.paddingRight = "14px";
		});
		link.addEvent('mouseleave',function(e){
			if(currentForm != link.id.replace("form",""))
			{
				link.style.color = "#231F20";
				link.style.background = "none";
				link.style.paddingRight = "0px";
			}
		});
	});
});