$(document).ready(function(){

$("a#bookOnline").click(function(){
	$('#BS1').css('display','none')
	$('#BS2').fadeIn("slow")
	$('#BS3').css('display','none')
	$('#BS4').css('display','none')
	
	$('#bookOnline').addClass('current')
	$('#callUs').removeClass('current')
	$('#contactUs').removeClass('current')
	$('#bookOnlineInverted').removeClass('current')
	$('#callUsInverted').removeClass('current')
	$('#contactUsInverted').removeClass('current')

	return false;
});


$("a#callUs").click(function(){
	$('#BS1').css('display','none')
	$('#BS2').css('display','none')
	$('#BS3').fadeIn("slow")
	$('#BS4').css('display','none')
	
	$('#bookOnline').removeClass('current')
	$('#callUs').addClass('current')
	$('#contactUs').removeClass('current')
	$('#bookOnlineInverted').removeClass('current')
	$('#callUsInverted').removeClass('current')
	$('#contactUsInverted').removeClass('current')

	return false;
});

$("a#contactUs").click(function(){
	$('#BS1').css('display','none')
	$('#BS2').css('display','none')
	$('#BS3').css('display','none')
	$('#BS4').fadeIn("slow")
	
	$('#bookOnline').removeClass('current')
	$('#callUs').removeClass('current')
	$('#contactUs').addClass('current')
	$('#bookOnlineInverted').removeClass('current')
	$('#callUsInverted').removeClass('current')
	$('#contactUsInverted').removeClass('current')

	return false;
});

$("a#bookOnlineInverted").click(function(){
	$('#BS1').css('display','none')
	$('#BS2').fadeIn("slow")
	$('#BS3').css('display','none')
	$('#BS4').css('display','none')
	
	$('#bookOnline').removeClass('current')
	$('#callUs').removeClass('current')
	$('#contactUs').removeClass('current')
	$('#bookOnlineInverted').addClass('current')
	$('#callUsInverted').removeClass('current')
	$('#contactUsInverted').removeClass('current')

	return false;
});


$("a#callUsInverted").click(function(){
	$('#BS1').css('display','none')
	$('#BS2').css('display','none')
	$('#BS3').fadeIn("slow")
	$('#BS4').css('display','none')
	
	$('#bookOnline').removeClass('current')
	$('#callUs').removeClass('current')
	$('#contactUs').removeClass('current')
	$('#bookOnlineInverted').removeClass('current')
	$('#callUsInverted').addClass('current')
	$('#contactUsInverted').removeClass('current')

	return false;
});

$("a#contactUsInverted").click(function(){
	$('#BS1').css('display','none')
	$('#BS2').css('display','none')
	$('#BS3').css('display','none')
	$('#BS4').fadeIn("slow")
	
	$('#bookOnline').removeClass('current')
	$('#callUs').removeClass('current')
	$('#contactUs').removeClass('current')
	$('#bookOnlineInverted').removeClass('current')
	$('#callUsInverted').removeClass('current')
	$('#contactUsInverted').addClass('current')

	return false;
});

});

