function changeImage(image,path)
{
	$("#changeableImage").attr('src',path+'/'+image);
}
function addToCart(id,baseUrl)
{
	var base_url = "http://www.africhic.com/";
	//var base_url = "http://pc/africhic_2-8-10/";
	if($("#size"))
	{
		var size = $("#sizes").val();
	}
	if($("#color"))
	{
		var color = $("#color").val();
		if(color==0 || color=="0")
		{
			alert("Please select color");
			return;
		}
	}
	if($("#cmbQuantity"))
	{
		var quantity = $("#cmbQuantity").val();
	}
	var createUrl = "";
	if(color)
	{
		createUrl += color+"/";
	}
	else
	{
		createUrl += "false"+"/";
	}
	if(quantity)
	{
		createUrl += quantity+"/";
	}
	else
	{
		createUrl += "false"+"/";
	}
	if(size)
	{
		createUrl += size+"/";
	}
	else
	{
		createUrl += "false"+"/";
	}
	if(!size)
	{
		size = 15;
	}
	if(document.getElementById("sizes"))
	{
		if(document.getElementById("sizes").value == "")
		{
			alert("Please select size");
			return;
		}
		else if(document.getElementById("sizes").value == 0)
		{
			var flag = confirm("Product sold out. would you like to add this product to your wishlist. ");
			if(flag)
			{
				location.href = base_url+"cart/addToWishList/"+id+"/"+15;
				return;
			}
			if(!flag)
			{
				return;
			}
		}
	}
	location.href = baseUrl+'/'+id+"/"+createUrl;
}
