
	
	function get_qty_in_stock(data){
		qty_in_stock = data.entry_list[0].name_value_list.qty_in_stock.value
		
		

		if(qty_in_stock > 5){
		$(".stock_check").addClass("high");
		$(".stock_check").html("There are 5+ in stock");
		}else

		if(qty_in_stock <= 5 && qty_in_stock != 0){
				$(".stock_check").addClass("medium");
		$(".stock_check").html("Only " + qty_in_stock + " in stock, order now to avoid dissapointment" );
		
		}else
		if(qty_in_stock == 0){
			$(".stock_check").addClass("none");
		$(".stock_check").html("Out of stock, please get in contact");
		}else

		{
		$(".stock_check").addClass("no_info");
		$(".stock_check").find('span').html("No stock Infomation avalible, please get in contact");
		}
	
	
		}
	
	
	


	

