﻿$(document).ready(function() {
    $("a.booking").fancybox({
    	'hideOnContentClick': false,
    	'zoomSpeedIn':		0, 
    	'zoomSpeedOut':	0, 
    	'overlayShow':		true,
    	'overlayColor': '#000',
    	'overlayOpacity': 0.8,
    	'width': 550,
    	'height': 600
    });
    
    $('#slideshow').cycle({ 
        fx: 'fade'
    });

    $(".fotoviewer, .fancylink").fancybox({
        overlayShow: true,
        overlayOpacity: 0.8,
        overlayColor: '#000000',
        padding: 2,
        titlePosition: "over",
        centerOnScroll: true
    });

    $('#nav li').hover(
        function () {
            $('ul:first', this).stop().fadeIn('fast');
            $('ul:first', this).parent().css("background-color","#4a4038");
        }, 
        function () {
            $('ul:first', this).stop().fadeOut('fast');
            $('ul:first', this).parent().css("background-color","Transparent");
        }
    );
});

