$(document).ready(function() {
	$("ul.the-tabs li:first a").addClass("selected"); //Activate first tab
	//$("#contact-details").show(); //Show first tab content
	$("#contact-details").css('position','absolute'); //Show first tab content
	$("#contact-details").css('left','635px'); //Show first tab content
	$("#contact-details").css('width','250px'); //set width for IE7
	//$("#location-map").hide(); //Hide second tab content
	$("#location-map").css('position','absolute'); //Show first tab content
	$("#location-map").css('left','-99999px'); //Show first tab content

	//On Click Event
	$("ul.the-tabs li a").click(function() {
		$("ul.the-tabs li a").removeClass("selected"); //Remove any "selected" class
		$(this).addClass("selected"); //Add "selected" class to selected tab
		return false;
	});
});

function tabToggle(show, hide){
	//$(show).show();
	//$(hide).hide();
	
	$(show).css('position','absolute'); //Show first tab content
	$(show).css('left','635px'); //Show first tab content
	//$("#location-map").hide(); //Hide second tab content
	$(hide).css('position','absolute'); //Show first tab content
	$(hide).css('left','-99999px'); //Show first tab content
}
