$(document).ready(function(){

  if( $('.colorForm select').size() > 0 || $(".prodListFrom.wAtrr").size() > 0) {
	 $('.addCartBt').click(function(){return false;}).hide();	 
	 $('#selectColorTxt').show();
	 $('#cart_quantity').submit(function(){return false;});
  }
   
  $(".colorForm select").change(function(){	  
	  var picID = 'colorpic-'+$(this).attr('id');	  
	  jQuery.post('serv_cart.php',
	    { action : 'add', products_id : $('#productRef').val() , opt : $(this).attr('id'), qty : $(this).val() },
	    function(data){	    	
	    	$.add2cart(picID,'cartContentBox');
	    	reloadCartBox();
	    } 
	   );	  
  });
  
  
  $('.simpleProductAddCartBt').click(function(){
	  var ref   = $(this).attr('id').split(new RegExp("[-]+","g"));
	  var pID   = ref[1];
	  var picID = 'prodPic-'+pID;
	  
	  var qty   = $('#qty-'+pID).val();
	  
	  jQuery.post('serv_cart.php',
			    { action : 'buy_now', products_id : pID , qty : qty },
			    function(data){	    	
			    	$.add2cart(picID,'cartContentBox');
			    	reloadCartBox();
			    } 
			   );  

	  return false;
  });

});



function reloadCartBox()
{
  $('#cartContentBox').load('serv_cart.php',{action:'getCart'});
}