$(document).ready(function () {
	
	// Menu
	$("#menu ul.top_menu li.head").mouseenter(function (){
		
		$("a.head", this).css("color", "#f4b931");
		//$("a.head", this).css("border-bottom", "3px solid #f4b931");
		$("ul", this).css("display", "block");
	});
	
	$("#menu ul.top_menu li.head").mouseleave(function (){
		
		$("a.head", this).css("color", "#fff");	
		//$("a.head", this).css("border-bottom", "none");
		$("a.head.active", this).css("color", "#f4b931");
		//$("a.head.active", this).css("border-bottom", "3px solid #f4b931");	
		$("ul", this).css("display", "none");
	});
	
	
});