$(function()
{
	if( ($.browser.msie == true) &&  ($.browser.version < 7))
	{
		$("#header_content ul li:has(ul)").mouseenter(function()
		{			
			$(this).find("ul").css({ "display" : "inline-block", "position" : "absolute" , "margin-top" : "13px" });
			
		}).mouseleave(function()
		{
			$(this).find("ul").css({ "display" : "none" });
		});
	}
	
	$("#content a.img").fancybox({
		'hideOnContentClick': false
	});
	
})
