// JavaScript Document

$(document).ready(function(){
	$("a#photoCat1").mouseover(function(){
		$("div.photoCatImg").hide();
		$("div#photoCatImg1").fadeIn("slow");
		return false;
	})
	$("a#photoCat2").mouseover(function(){
		$("div.photoCatImg").hide();
		$("div#photoCatImg2").fadeIn("slow");
		return false;
	})
	$("a#photoCat3").mouseover(function(){
		$("div.photoCatImg").hide();
		$("div#photoCatImg3").fadeIn("slow");
		return false;
	})
	.end()
});