$(window).load(function() {
$('div.colprodimg img').each(function() {
 if (!this.complete || (!$.browser.msie && (typeof this.naturalWidth == "undefined" || this.naturalWidth == 0))) {
      this.src = aWhere+ '/images/no-image.jpg';
    }
});
$('td.horprodimg img').each(function() {
 if (!this.complete || (!$.browser.msie && (typeof this.naturalWidth == "undefined" || this.naturalWidth == 0))) {
      this.src = aWhere+ '/images/no-image.jpg';
    }
});
});



function checkRating(){
	var rating = $('#rating');
	var page = $('#rPage');
	var COOKIE_NAME = 'awCookie'+page.val();
	if($.cookie(COOKIE_NAME) && $.cookie(COOKIE_NAME) == page.val()){
	alert('You have already submitted a ranking for these products.');
	return false;	
	}
	if(rating.val() == 'none'){
	alert("Please Select Your Rating.");	
	rating.focus();
	return false;
	} else {
	$.get(aUrl+'/rating.php',{rating: rating.val(),page: page.val()},
	function(data){
	var date = new Date();
          date.setTime(date.getTime() + (24 * 60 * 60));
          $.cookie(COOKIE_NAME, page.val(), { path: '/', expires: date });
	$('#ratingImage').attr('src',data);	
	alert('Thanks For Your Opinion');
	});	
	}
}