$(document).ready(function() {

     $("#extra-image").css({height: "0px"});
	$("#tinygallery a").each(function(i){
	this.href
	$(this).bind("click", function() {
     $("#extra-image").html("<img src='"+this.href+"'></img>").slideDown();
     return false;
     $("#extra-image").click(function() {
     $("#extra-image").slideUp();
     });
     });
   	});
   	   	
 });