$(document).ready(function(){
  $(".menu_item").live('mouseover',function(){
    var tab = $(this).attr('title');
    $(this).attr('id','menu_'+tab+'_hover');
    $(this).attr('rel','hover')
  });
  $(".menu_item").live('mouseout',function(){
    var tab = $(this).attr('title');
    $(this).attr('id','menu_'+tab);
    $(this).attr('rel','')
  });
  $(".menu_item[rel='hover']").live('click', function(){
    var old = $("[rel='current']").attr('title');
    var cur = $(this).attr('title');
    $("[rel='current']").attr('id','menu_'+old).attr('class','menu_item').attr('rel','');
    $(this).attr('id','menu_'+cur+'_current').attr('class','menu_item_current').attr('rel','current');
    $("#content_body").html("<div style='padding:160px;'>Loading Content....</div>");
    $.get(cur+'.cfm', function(data){
      $("#content_body").html(data);
    });
  });
  $(".room_title").live('click', function(){
    if($(this).attr('rel') != 'current_room'){
      $(this).next().toggle('slow');
      $("[rel='current_room']").next().toggle('slow');
      $("[rel='current_room']").attr('rel','');
      $(this).attr('rel','current_room');
    }
  });
  $(".cabin_title").live('click', function(){
    if($(this).attr('rel') != 'current_cabin'){
      $(this).next().toggle('slow');
      $("[rel='current_cabin']").next().toggle('slow');
      $("[rel='current_cabin']").attr('rel','');
      $(this).attr('rel','current_cabin');
    }
  });
});

function preloader(){
     var i = 0;
     imageObj = new Image();

     images = new Array();
     images[0]="images/tab_map-hov.gif"
     images[1]="images/tab_Entertainment-hov.gif"
     images[2]="images/tab_Photos-hov.gif"
     images[3]="images/tab_Resort-hov.gif"
     images[4]="images/tab_map-on.gif"
     images[5]="images/tab_Entertainment-on.gif"
     images[6]="images/tab_Photos-on.gif"
     images[7]="images/tab_Resort-off.gif"

     for(i=0; i<=7; i++) 
     {
          imageObj.src=images[i];
     }



}
