jQuery(document).ready(function ($){
	
//	$(".ht-desc").hide();
	var menuItems = $(".ht-item A");
//	console.log(menuItems);
	menuItems.each(											 
		function(i){
			$(this).mouseover( function() { 
				var thisDesc = $(this).siblings(".ht-desc");
				thisDesc.fadeIn(500) 						
			} );
			$(this).mouseout( function()  { 
				var thisDesc = $(this).siblings(".ht-desc");
				thisDesc.fadeOut(200) 		
				
			 } );
 	});	
	
	 $('#hotelTabs').tabs({fxFade: true});
	 
	
	
}
);