var ProductTabs = [];
function showProductContent(tab)
{
	for(var i in ProductTabs)
	{
		if(tab == ProductTabs[i])
		{
			jQuery('.content-'+ProductTabs[i]).css('display', 'block');
			jQuery('.tab-'+ProductTabs[i]).addClass("active");
		}
		else
		{
			jQuery('.content-'+ProductTabs[i]).css('display', 'none');
			jQuery('.tab-'+ProductTabs[i]).removeClass("active");
		}
	}
}

function checkPostcodeDisplay(country)
{
	if(country == 'de')
		jQuery('li.postcode').css("display", "block");
	else
		jQuery('li.postcode').css("display", "none");
}
