$("document").ready(function(){
	$("#mainNavigation ul").find("li").hover(
		function() {
			$(this).find("ul.subMenu").fadeIn();	
		},
		function(){
			$(this).find("ul.subMenu").fadeOut();
		}
	)
});


// General Functions

function popGaleri(link){
	var full_path = link;
	var winstr = "";
	winstr+= '<html><head>';
	winstr+= '<title>Doğa Balık</title>';
	winstr+= "<"+"SCRIPT>\n";
	winstr+= "function specialInit()\n";
	winstr+= "{\n";
	winstr+= "if (document.all || document.layers)\n";
	winstr+= "window.resizeTo(document.images[0].width+25 , document.images[0].height+40);\n";
	winstr+= "}\n";
	winstr+= "</"+"SCRIPT>\n";
	winstr+= "</head>\n";
	winstr+= "<BODY leftmargin=0 topmargin=0 onLoad='specialInit();'>\n";
	winstr+= '<center>';
	winstr+= '<img src=\"'+full_path+'\" vspace=\"2\">';
	winstr+= '</center>';
	winstr+= '</body>';
	winstr+= '</html>';  
		
	galeriWindow = window.open('', 'DoğaBalık', 'width=600,height=300,scrollbars=0,resizable=1');
	galeriWindow.document.open();
	galeriWindow.document.write(winstr);
	galeriWindow.document.close();
}
