$(document).ready(function(){
    $(".thickbox").children("img").after("<div class='zoom'></div>");
    $("a.logo").mousemove(function(e){
        var x = e.pageX - this.offsetLeft;
	    var y = e.pageY - this.offsetTop;

      		$("#tass", this).css('margin-left', x);
      		$("#tass", this).css('margin-top', y);
    	});
    	$("a.logo").bind("mouseenter",function(){
      		$("#tass", this).show();
    		}).bind("mouseleave",function(){
      		$("#tass", this).hide();
    	});
  });



