	$(document).ready(function() 
	{
		$(window).load(function() { 
			var first=$(".BVRRRatingNormalImage").html();
			$('#single_rating_product').css({'display': 'block'});
			if (first==null)
			{


				var first=$(".BVRRRatingSummaryLink.BVRRRatingSummaryNoReviewsWriteImageLink").html();
				var second=$(".BVRRRatingSummaryLinkWriteFirstPrefix").html();
				//socal links if required
				var third=$(".BVRRSocialBookmarkingLinks").html();
				$("#rating").css({'height':'30px'});
				//$(".star_image").html(first);
				$("#rate_product").html("Rate This Product");
				$(".star_text").html(second);
				$(".single_rating_product_line_two").html('');
				$("#divider").html('&nbsp;');
				


			}
			else
			{

				//var second=$(".BVRRNumber.BVRRBuyAgainRecommend").html();
				var second=$(".BVRRRatingNormalOutOf").html();
				//var third=$(".BVRRSeparatorText").html();
				//var fourth=$(".BVRRNumber.BVRRBuyAgainTotal").html();
				var fifth=$(".BVRRBuyAgainPercentage").html();
				var sixth=$(".BVRRLabel.BVRRBuyAgainSuffix").html();
				//socal links if required
				var seven=$(".BVRRSocialBookmarkingLinks").html();

				
				$(".star_image").html(first);
				//$(".star_text").html(second).append(' ').append(third).append(' ').append(fourth);
				$(".star_text").html(second);
				$(".single_rating_product_line_two").html('').append(
					$("<strong/>")
						.append(fifth)
					).append(' ').append(sixth);
				
			}
		
		});
	});

