function checkIfComapany(value){
		sValue = new String(value);
	
		if(sValue.toLowerCase()=='firma'){
			$('company').show();
		}else{
			$('company').hide();
		}
	}
	
	function addCart(productId, productColor, productWeight){
		if(productColor){
			location.href = '/cart/add/id/'+productId+'/quantity/1/product_color/'+productColor+'/product_weight/'+productWeight;
		}else{
			alert('Proszę wybrać kolor produktu');
		}
		
	}