$(document).ready(function(){
$("#thumbs a").click(function(){
$("#grande").html("<img src="+$(this).attr("href")+"  style=\"border:1px solid #4c4c4c;\"/>").hide()
$("#grande img").load(function(){$("#grande").fadeIn("slow")});
return false;
});
$("#thumbs a:first").click();
});		
