jQuery(function() {
jQuery("a.overlay").click(function() { //e.preventDefault(); var docHeight = jQuery(document).height();
jQuery("body").append("
"); jQuery("#overlay") .height(docHeight) .css({ 'opacity' : 0.4, 'position': 'fixed', 'top': 0, 'left': 0, 'background-color': 'black', 'width': '100%', 'z-index': 99999 });
jQuery("#contentWrap").load( jQuery(this).attr('rel') ); jQuery("#image-holder").css({ 'width': '612px', 'height': '612px' }); }); jQuery("div.item-holder").hover(function() { var id = jQuery(this).data("id"); jQuery("div.hover-action[data-id=" + id + "]").show("slow"); }, function() { jQuery("div.hover-action").hide("slow"); } );
});