$(document).ready(function() {
 	$(".tab_content").hide(); 
	$(".active").show();
	
/*	
    $(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content
*/

	$("ul.tabs li, ul.HotelTabs li").click(function() {
		$("ul.tabs li, ul.HotelTabs li").removeClass("active");
		$(this).addClass("active");
		$(".tab_content").hide(); 
		var activeTab = $(this).find("a").attr("href");
		if  ($.browser.msie)
		{$(activeTab).show();}
		else
		{$(activeTab).fadeIn();}		
		return false;
	}); 
});

