// JavaScript Document

jQuery(window).bind('load', function () {
	jQuery(".product .image img, .image1url img, .image2url img, .image3url img").each(function() {
		if((typeof this.naturalWidth != "undefined" && this.naturalWidth ==0)
		|| this.readyState == 'uninitialized') {
			jQuery(this).attr('src','/images/noimageavailable.jpg');
		}
	});
}); 

