

// note, nesting an image load event inside of the document ready event?

if (jQuery) {
	
	
	//$(document).ready(function() {
		
		var h = $('#product-image-holder');
		var i = $('img:first', h);
		if (i.attr('src') != '') {
			h.fadeIn('slow');
		}
		else {
			h.remove();	
		}
		
	//});
	
	
	
	
}
