// JavaScript Document


$(document).ready(function(){

	

	$(".thumbs a").click(function(){

	  var fullPath = $(this).attr("href");
	  var fullAlt = $(this).attr("title");

	  $("#fullImg").attr({ src: fullPath, alt: fullAlt }); return false;
	 

	  
	});

});