 $(document).ready(function(){


	 $('.tabs table tr td:first-child').css('font-weight','bold');
	 $('.tabs table tr:last-child td').css('border','0');

	  $('#addparam').change(
	  	function(){
	  		var setprice = $(this).val();
	  		var setprice = $('option:[value="'+setprice+'"]',this).attr('class');
	  		var count = $('input:[name="shk-count"]').attr('value');
	  		$('#sumprice').html(setprice);
	  		$('span.shk-price').html(setprice*count);
	  	}
	  );

	 $('#count11').change(
	 	function(){
	 		var count = $(this).val();
	 		var price = $('#sumprice').text().replace(/\D* /,'');
	 		if (price == '0'){var price = $('#addparam option:first-child').attr('class');}
	 		$('input:[name="shk-count"]').attr('value',count);
	 		$('span.shk-price').html(price*count);
	 	}
	 );

	
	 
	 		if ($('#shopCart').hasClass('emptycarty') == true){
		    	 $('#respond').css('display','none');
		  		}
		  		else{}
	 

	 

}
                                );
                              
