$(document).ready(function(){
	
    $("a.zoom").prepend("<div class=\"zoombutton\"></div>");
	
	$("a.zoom").children(".zoombutton").hide();
	
	$("a.zoom").hover(
      function () {
			
			$(this).children(".zoombutton").fadeIn("slow");
			
      }, 
      function () {
       		$(this).children(".zoombutton").fadeOut("slow");
      }
    );
  });

function center() {
	$(".zoom img").each(function(){
			var wys;
			var szer;
		
			wys = $(this).height();
			wys = (wys / 2) - 25;
		
			szer = $(this).width();
			szer = (szer / 2) - 75;
		
			$(this).parent().children(".zoombutton").css({ top:wys, left:szer });
	
		});
}
