// JavaScript Document


$(document).ready(function(){
		
	
		
	$("#panel img, #panel2 img, #panel3 img, #panel4 img, #panel5 img, #panel6 img, #panel7 img").hover(function()
	{
		$(this).css({"cursor":"pointer"}),function(){}		
	});

	$("#panel img").live("click",function(){
	//alert ("click");
		var largePath = $(this).attr("src");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });			
		
	});
	
	$("#panel2 img").live("click",function(){
	//alert ("click");
		var largePath = $(this).attr("src");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg2").attr({ src: largePath, alt: largeAlt });			
		
	});
	
	$("#panel3 img").live("click",function(){
	//alert ("click");
		var largePath = $(this).attr("src");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg3").attr({ src: largePath, alt: largeAlt });			
		
	});
	
	$("#panel4 img").live("click",function(){
	//alert ("click");
		var largePath = $(this).attr("src");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg4").attr({ src: largePath, alt: largeAlt });			
		
	});
	
	$("#panel5 img").live("click",function()
	{
		var largePath = $(this).attr("src");
		var largeAlt = $(this).attr("title");
		$("#largeImg5").attr({ src: largePath, alt: largeAlt });	
	});
	
	$("#panel6 img").live("click",function()
	{
		var largePath = $(this).attr("src");
		var largeAlt = $(this).attr("title");
		$("#largeImg6").attr({ src: largePath, alt: largeAlt });	
	});
	
	$("#panel7 img").live("click",function()
	{
		var largePath = $(this).attr("src");
		var largeAlt = $(this).attr("title");
		$("#largeImg7").attr({ src: largePath, alt: largeAlt });	
	});
	
	
	
});
