function toggleProduct(id){
	productId = "product_" + id;
	menuId = "item_" + id;

	$('#' + productId).toggle();
	if($('#' + productId).is(':visible')){
		$("#" + menuId).attr("src", "images/syringes_" + id + "_selected.png");
	} else {
		$("#" + menuId).attr("src", "images/syringes_" + id + ".png");
	}
	return false;
}

function toggleProductClass(id){
	productClass = ".product." + id;
	menuId = "item_" + id;
	
	$(productClass).toggle();
	if($(productClass).is(':visible')){
		$("#" + menuId).attr("src", "images/needles_" + id + "_selected.png");
	} else {
		$("#" + menuId).attr("src", "images/needles_" + id + ".png");
	}
	return false;
}

function getCurrencyDependencies(currency){
	$.get(
		'ajax/currency_selected.php',
		{currency: currency},
		function(data) {
		  myResponse = $.parseJSON(data);
		  console.log(myResponse);
		  
		  $("#shipping").html(myResponse.shipping);
		  alert(myResponse.prices['004']);
		}
	);
}
