$(document).ready(function(){$("#nav img").each(function(){rollsrc=$(this).attr("src");rollON=rollsrc.split("-")[0]+"_over.gif";if(rollON!="images/nav/portfolio_over.gif"){$("<img>").attr("src",rollON);$("<img>").attr("src","images/proof_sheet_over.gif")}});$("#nav a").mouseover(function(){imgsrc=$(this).children("img").attr("src");matches=imgsrc.match(/_over/);if(!matches){imgsrcON=imgsrc.split("-")[0]+"_over.gif";$(this).children("img").attr("src",imgsrcON)}});$("#nav a").mouseout(function(){$(this).children("img").attr("src",imgsrc)});$("#proof_sheet a img").mouseover(function(){imgsrc=$(this).attr("src");if($(this).attr("class")=="landscape_thumb"){$(this).attr({src:"images/proof_sheet_over.gif",width:100,height:75})}else{$(this).attr({src:"images/proof_sheet_over.gif",width:75,height:100})}return imgsrc});$("#proof_sheet a img").mouseout(function(){$(this).attr("src",imgsrc)})});