$(document).ready(function(){
// 	$("div.menu ul ul").hide();
// 	$("div.menu li a").click(function(){
// 		$(this).next().toggle();
// 	});

	$("a.gallery").click(function(){
		// open popup window
		window.open($(this).attr("href"),'gallery_window',
		"menubar=0,resizable=0,location=0,status=0,scrollbars=0,width=720,height=500")
		
		return false;
	});
	
		$("a.downloads").click(function(){
		// open popup window
		window.open($(this).attr("href"),'downloads_window',
		"menubar=0,resizable=0,location=0,status=0,scrollbars=1,width=800,height=800")
		
		return false;
	});
	
	$('#menu li ul').hide();
	$('#menu li').hover(
		function(){ $(this).children('ul').show() },
		function(){ $(this).children('ul').hide() }
	);

});