// JavaScript Document
$(document).ready(function() {
	// do something here

$("#thumbs img").click( function() { $("body").css({ cursor:"wait"});  tmp = $(this).attr("alt"); $("#container_right").css({ background:"center no-repeat url(images/gallery/"+tmp+")" }); $("#container_right").fadeIn(6000, function(){
   $("body").css({ cursor:"default" }); }); return false;
	});
	//$("#thumbs img").click( function() { alert('hi'); } );
});
