// JavaScript Document

$(document).ready(function(){
 
//Larger thumbnail preview 
 
//$("ul.thumb li").hover(function() {
	//$(this).css({'z-index' : '10'});
	
	//$(this).find('img').addClass("hover").stop()
		//.animate({ 
			//height: '200px'
		//}, 200);
	
	//$(this).find('a').addClass("hover").stop()
		//.animate({
			//marginTop: '-104px', 
			//marginLeft: '0', 
			//top: '50%', 
			//left: '0',  
			//height: '200px',
			//border: '10px solid #d9d9d9'
		//}, 200);	    
	
	//} , function() {
	//$(this).css({'z-index' : '0'});
	
	//$(this).find('img').removeClass("hover").stop()
		//.animate({ 
			//height: '100px'
		//}, 400);
		
	//$(this).find('a').removeClass("hover").stop()
		//.animate({
			//marginTop: '0', 
			//marginLeft: '0',
			//top: '0', 
			//left: '0', 
			//height: '100px', 
			//border: '3px solid #d9d9d9'
		//}, 400);		
	
//});
 
//Swap Image on Click
	$("ul.thumb li a").click(function() {
		
		var mainImage = $(this).attr("href"); //Find Image Name
		$("#main_view img").attr({ src: mainImage });
		return false;		
	});
 
});
