var ImgIdx = 2;
function PreloadImg(){
	var img = new Image();
	img.src="/imageswitch/images/slash2.jpg";
	img.src="/imageswitch/images/slash3.jpg";
	img.src="/imageswitch/images/slash4.jpg";
	img.src="/imageswitch/images/slash5.jpg";
}

$(document).ready(function(){
	PreloadImg();
	$(".SlashEff ul li").click(function(){
		$(".Slash").ImageSwitch({Type:$(this).attr("rel"), 
									NewImage:"/imageswitch/images/slash"+ImgIdx+".jpg", 
									Direction:"DownTop", 
									EffectOriginal: false
									});
		ImgIdx++;
		if(ImgIdx>5) ImgIdx = 1;
	});				
});