jQuery(document).ready(function() {
	fnShowUserComments();
	if(jQuery('#display_customer_comments_all'))
	{
		fnShowPage(1);
	}
	$('#options_table input').attr('readonly',true);
	$('#options_table input').css('border','1px solid #EEEEEE');
	$('#options_table input').css('background-color','#EEEEEE');
	$('#options_table input').css('color','1px solid #000');
	$("IMG[src~='Options_Text_Choose']").replaceWith("The following products are included in this Stack");
});

function fnShowPage(intPageNo)
{
   jQuery.ajax({
		  url: '/v/vspfiles/templates/buysteroids/buysteroids.comments_'+intPageNo+'.html',
		  cache:false,
		  success: function(data) {
			jQuery('#display_customer_comments_all').html(data);
			//alert(data);
		  }
		});
}
function fnShowPageWinner(intPageNo)
{
   jQuery.ajax({
		  url: '/v/vspfiles/templates/buysteroids/OralSteroids.winners_'+intPageNo+'.html',
		  cache:false,
		  success: function(data) {
			jQuery('#display_customer_comments_all').html(data);
			//alert(data);
		  }
		});
}
