// JavaScript Document
$(document).ready(function(){				    
					$("#photoThumbs a").mouseover(function() {		   
											   $("#photoThumbs a").click(function(event) {
											 event.preventDefault();
													   });
											   var largePath = $(this).attr("href");
											   var largeAlt = $(this).attr("alt");
											   var largeTitle = $(this).attr("title");
											   $("#mainImg").show("slow").attr({ src: largePath, alt: largeAlt, title: largeTitle });
											   return false;
											   });
	});
