// PRELOAD IMAGESjQuery.preloadImages = function(){	for(var i = 0; i<arguments.length; i++){		jQuery("<img>").attr("src", arguments[i]);	}}$.preloadImages("images/index/01.jpg", "images/index/02.jpg","images/index/03.jpg","images/index/04.jpg","images/index/05.jpg","images/index/06.jpg","images/menu/menu01_over.gif","images/menu/menu02_over.gif","images/menu/menu03_over.gif","images/menu/menu04_over.gif","images/menu/menu05_over.gif","images/menu/menu06_over.gif","images/menu/menu07_over.gif","images/menu/menu08_over.gif");// MENU ROLLOVER$(function(){	$.each($("img.rollover"), function(){		var imgPass = $(this).attr("src");		var imgType = imgPass.substring(imgPass.lastIndexOf('.'), imgPass.length);		var loadImgPass = imgPass.replace(imgType, '_over' + imgType);		new Image().src = loadImgPass;		$(this).attr({oversrc:loadImgPass});	});	$("img.rollover").hover(		function(){			$(this).attr({src:$(this).attr("oversrc")});		},		function(){			$(this).attr({src:$(this).attr("src").replace("_over","")});		}	);});// POPUP$(function(){$(".popupwindow").popupwindow();});