function updateVAT( incVAT ) {
	
	if( incVAT ) {
		$('#miniBasket_showVATInBasket').attr('checked', true);
		$('#miniBasket_dontshowVATInBasket').attr('checked', false);
		$('.itemIncVAT').each(function(){
			$(this).show()
		});

		$('.itemExVAT').each(function(){
			$(this).hide()
		});
	}else{
		$('#miniBasket_showVATInBasket').attr('checked', false);
		$('#miniBasket_dontshowVATInBasket').attr('checked', true);
		$('.itemIncVAT').each(function(){
			$(this).hide()
		});

		$('.itemExVAT').each(function(){
			$(this).show()
		});
	}

	setCookie( 'showVATInBasket', incVAT );
}

$(document).ready(function(){
	var cookieVal = getCookie( 'showVATInBasket' );
	if ( cookieVal != 'false' || cookieVal == 'true' || typeof cookieVal == 'undefined'){
		$('#miniBasket_showVATInBasket').attr('checked', false);	
		$('#miniBasket_dontShowVATInBasket').attr('checked', true);	
	}else{
		$('#miniBasket_showVATInBasket').attr('checked', true);
		$('#miniBasket_dontShowVATInBasket').attr('checked', false);

	}
})

function checkVATCookie() {
	var cookieVal = getCookie( 'showVATInBasket' );
	
	// if val is true or not previously been set...
	if ( cookieVal != 'false' || cookieVal == 'true' || typeof cookieVal == 'undefined' ) {
		updateVAT(  );
	} else {
		updateVAT( true );
	}
}
