		$(document).ready(function(){
   		$("#menuList li:eq(" + theLink + ") a").css("background-color", "#440000");
   		});
		  
	function doEnlarge(filename)
	{
			width = 700;
			height = 700;
			var url = "index.php?method=main.enlarge&filename=" + filename;
			var newLeft = (window.screen.availWidth - width) / 2;
			var newHeight = (window.screen.availHeight - height) / 2;
			var objPopup = window.open(url,'detailWin','height=' + height + ',width=' + width + ',left=' + newLeft +',top=75,menubar=0,status=0,scrollbars=0,directories=0');
			objPopup.focus();
	}
	
		
	function openContact()
	{
		var height=500;
		var width=600;
		var newLeft = (window.screen.availWidth - width) / 2;
		var newHeight = (window.screen.availHeight - height) /2;
		var url = "index.php?method=main.contact";
		var contactWin = window.open(url,'ssWin','height=' + height + ',width=' + width + ',left=' + newLeft + ',top=' + newHeight + ',menubar=0,status=0,scrollbars=0,directories=0,resizable=1');
		contactWin.focus();
	}
