
function showHideShipping()
{
	if($('#multipleShipping').attr('checked') == true)
	{
		$('#cartShipAddress').fadeOut('slow');
		$('#checkShippingDiv').fadeOut('slow');
		$('#messageHide').hide();
	}
	else
	{
		$('#checkShippingDiv').fadeIn('slow');
		
		if($('#checkShipping').attr('checked') == false)
		{
			$('#cartShipAddress').fadeOut('slow');
			$('#messageHide').fadeIn('slow').css('display', 'table-row');
		}
		else
		{
			$('#cartShipAddress').fadeIn('slow');
			$('#messageHide').fadeOut('slow');
			$('#billingMessage').val('');
		}
	}
}

$(document).oneTime(50, function(){
								   
		$('#messageBox').fadeIn('slow');
		
		$('#messageBox').oneTime(8000, function(){
			
				$(this).fadeOut('slow');
			
			});
	
	});

