$(document).ready(function() {
    $('#menu li').hover(
        function () {
            $('ul:first', this).stop(true,true).fadeIn('fast');
        }, 
        function () {
            $('ul:first', this).stop(true,true).fadeOut('fast');
        }
    );
    $("#overog a").hover(function() {
        $(this).find("span").css({"background-color":"#e66e1e"});
    }, function () {
        $(this).find("span").css({"background-color":"#ffffff"});
    });
    
    $("#overog a").hover(function() {
        $(".hoverimg", this).stop().fadeTo(200, 1);     
    }, function() {
        $(".hoverimg", this).stop().fadeTo(200, 0);
    });
    
    setFooterPos();
    $(window).resize(function () {
        setFooterPos();
    });
    
    function setFooterPos() {
        if ($(window).height() > $("body").height()) {
            $("#footercontainer").css({ "top": ($(window).height() - $("body").height()) + "px" });
        }
    }
    
    $(".booknow").fancybox ({
        type: 'iframe',
        height: 500,
        width: 457
    });

});
