$(document).ready(function(){
 //OPACITY ROLLOVERS
 var opa_roll_Config = {    
      sensitivity: 1,                                               // number = sensitivity threshold (must be 1 or higher)    
      interval: 10,                                                // number = milliseconds for onMouseOver polling interval    
      over: function() {$(this).animate({opacity: 0.30}, 'fast');},  // function = onMouseOver callback (REQUIRED)
      timeout: 100,                                                // number = milliseconds delay before onMouseOut    
      out: function() {$(this).animate({opacity: 1}, 'fast');}   // function = onMouseOut callback (REQUIRED)
 };
 
  $('.opa').hoverIntent( opa_roll_Config );
  
 // font color animation 
                $("a.fader").stop().hover(function() {
                $(this).stop().animate({ color: "#33aab5" }, 300);
        },function() {
    $(this).animate({ color: "#FFFFFF" }, 300);
        });
			
 // font color animation 
 
                $("#header ul li.noactive").stop().hover(function() {
                $(this).stop().animate({ backgroundColor: "#FFFFFF" }, 300);
        },function() {
    $(this).animate({ backgroundColor: "#33aab5" }, 300);
        });
		
		$("#footer a").stop().hover(function() {
                $(this).stop().animate({ backgroundColor: "#780032" }, 300);
        },function() {
    $(this).animate({ backgroundColor: "#EAD4D6" }, 300);
        });
		
		$("#content a.booking").stop().hover(function() {
                $(this).stop().animate({ backgroundColor: "#008C99" }, 300);
        },function() {
    $(this).animate({ backgroundColor: "#D5E9EB" }, 300);
        });
				
				
		
		
  });	
