$(document).ready(function(){
	// ===========================================================
	//	MENU SETUP
	// ===========================================================
	$(".menu").delegate("a", "hover", function(){
		if($(this).find(".menu_item").attr("current_item") != "1")
			$(this).find(".menu_item").toggleClass("active_item");
	});
	
	// ===========================================================
	//	HEADER MENU
	// ===========================================================
	$(".header_menu a")
		.hover(function(){
			$(this).css("z-index", "2000");
			$(this).find('img').stop().animate({ 
				width: "205px",
				height: "63px",
				marginLeft: "-5px",
				marginTop: "-1px"
			}, {duration: 500, queue: false});
		}, function(){
			$(this).css("z-index", "1000");
			$(this).find('img').stop().animate({ 
				width: "199px",
				height: "61px",
				marginLeft: "0px",
				marginTop: "0px"
			}, {duration: 500, queue: false});
		});
});
