$('document').ready( function() {
		// legordulo fomenu
		$("#main_menu li").hover (
	        function() { 
				$("div", this).show(); 
			}, 
    	    function() { 
				$("div", this).hide(); 
			} 
	    );
		
		$(".proform tr:odd").css("background-color", "#E5E5E5");
		$(".proform-submit").parents("fieldset").removeClass('proform').addClass('proform-submit-holder');
});