// JavaScript Document

$(document).ready(
  function(){
    $("#navi li").hover(function(){
       $(this).fadeTo("normal", 0.6);
    },function(){
       $(this).fadeTo("normal", 1.0);
  });
});

$(document).ready(
  function(){
	$("#photos div").hover(function(){
		var no;
		if(this.id=="p1") no=".Slash1";
		else if(this.id=="p2") no=".Slash2";
		else if(this.id=="p3") no=".Slash3";
		else if(this.id=="p4") no=".Slash4";
		$(no).ImageSwitch({Type:$(this).attr("class"), 
		NewImage:$(this).attr("rel"),	
		Direction:"FadeIn",
		Speed:300,
		Direction: "RightLeft",
		EffectOriginal:false
		});
	},function(){
		var no;
		if(this.id=="p1") no=".Slash1";
		else if(this.id=="p2") no=".Slash2";
		else if(this.id=="p3") no=".Slash3";
		else if(this.id=="p4") no=".Slash4";
		var newImg=$(no).attr("src").lastIndexOf(".");
		var current=$(no).attr("src").substr(0,newImg-3);
		$(no).ImageSwitch({Type:$(this).attr("class"), 
		NewImage:current+".jpg",
		Direction:"FadeIn",
		Speed:10,
		Direction: "RightLeft",
		EffectOriginal:false
		});
  });
});