$(document).ready(function(){
	// menus control
	$("#areaMenus ul:eq(0) li").hover(
		function() { $(".subMenus ul", $(this)).slideDown(100); },
		function() { $(".subMenus ul", $(this)).slideUp(50); }
	);
	// end menus control

	// close notify error
	$(".close").click(
		function () {
			$(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent
				$(this).slideUp(400);
			});
			return false;
		}
	);

	// add red color for request field
	$('label:contains("*")').each(function(){$(this).html($(this).html().replace('*','<span>*</span>'));});
})

