$(document).ready(function(){
    $("a.zoom").prepend("<div class=\"zoombutton\"></div>");
	$("a.zoom").children(".zoombutton").hide();
	$("a.zoom").hover(
      function () {	
			$(this).children(".zoombutton").fadeIn("fast");
      }, 
      function () {
       		$(this).children(".zoombutton").fadeOut("slow");
      }
    );
  });

function show() {
	$(".zoom img").each(function(){
			$(this).parent().children(".zoombutton");
		});
}