jQuery(document).ready(function() {	

	var originalRating = jQuery('a.ratingBG span').css('width');

	if (jQuery('#WebShowVideoPlayer embed').attr("width") > 925){
		jQuery('#WebShowVideoPlayer embed').attr("width", 925);
	}
	
	
});

function updateRatingText(rating, votes){
	jQuery('.ratingText').html('<p>'+rating+' based on '+votes+' votes</p>').css('display', 'block');	
}