// JavaScript Document

jQuery(document).ready(function(){
$(".tabs2 li a").click(
function(){
if($(this).hasClass("active")) {}
else {
$(".tabs2 li a").removeClass("active");
$(this).addClass("active");
$("ul.tab_text > li").fadeOut(400);
if($(this).is("#tab-description")) {
$("#text-description").fadeIn(400);
}
if($(this).is("#tab-accommodations")) {
$("#text-accommodations").fadeIn(400);
}
if($(this).is("#tab-amenities")) {
$("#text-amenities").fadeIn(400);
}
if($(this).is("#tab-attractions")) {
$("#text-attractions").fadeIn(400);
}
if($(this).is("#tab-directions")) {
$("#text-directions").fadeIn(400);
}
if($(this).is("#tab-weather")) {
$("#text-weather").fadeIn(400);
}
}
});
});
