jQuery(function() {

    jQuery(".items img").click(function() {
        var wrap = jQuery("#detPic").fadeTo("medium", 0.5);
        loadIMG(jQuery(".items img").index(this));
        wrap.fadeTo("fast", 1);
    });

	jQuery("img[rel]").overlay({
		oneInstance: true,
		top: 70
	});
	jQuery("img[rel]").click(
    	function() {
        	jQuery(this).overlay().load();
	});

});
