$(document).ready(function() {
	$('#product-wrap div:not(#features-area)').hide();
	$('#country').hide();
	$('#product-tabs li a').click(function(){
		$('#product-tabs li').removeClass('tab-on').addClass('tab-off');
		$(this).parent().removeClass('tab-off').addClass('tab-on');
		$('#product-wrap div').hide();
		var clicked = "#" + $(this).parent().attr('id') + "-area";
		$(clicked).fadeIn();
	});
	var clicked = 0;
	$('#country-selection, #close-box').click(function() {
		if (clicked == 0){
			$('#country').slideDown('fast');
			clicked = 1;
		} else {
			$('#country').fadeOut('fast');
			clicked = 0;
		}
	});
	$("#products-cart input").change(function() {
		if(this.value == '' || this.value == null){
			this.value = 0;
		}
	});
});
