
function addToCart (item_name, fabric, price, img) {
	
  simpleCart.add('name='+item_name+" "+fabric,'price='+price,'image='+img);
  
}


