$(document).ready( function () {

		$(".comments").hide();

		$(".viewComments").click(function(){
			$(".itemDesc").hide();
			$(".comments").show();
			$('#scrollComments').jScrollPane();
			return false;				
		});	

		$(".backToDetail").click(function(){
			$(".comments").hide();
			$(".itemDesc").show();
			return false;				
		});	

});