window.onload = function(){$('#slider').fadeIn('slow')};
var opts = {lines: 12,  length: 0,width: 16,radius: 33, color: '#ffffff',  speed: 1,  trail: 50, shadow: false};
var target = document.getElementById('slide_show_wrapper');
var spinner = new Spinner(opts).spin(target);

$(document).ready(function() {
    // Image slide show
    $('#slider').nivoSlider({effect:'fade',animSpeed:700,controlNav:false,prevText: ' ',nextText: ' ',pauseTime: 3000});
    
    // Open Dialog box for booking form
    $('#book_now').live('click',function(e){
        var id = $(this).attr('class');
        e.preventDefault();
        $('#booking_form').show();
        $('#booking_form').dialog('open');
        $('#booking_form').html('<iframe src="http://www.globalavailability.com/art/guests/guest-main.php?pid='+id+'&referrer=51&iframe=1&availability=show" frameborder="0"  style="background:#fff;overflow-x: hidden; overflow:auto; height:100%;" width="100%"></iframe>');
    });
    $('#booking_form').dialog({height:500,width:980,autoOpen: false,modal:true});
    
    //// SLiding menu
    //$('#main_nav ul li:has("ul")').hover(function(){
    //    var child = $(this).children('ul');
    //   child.stop(true,true).slideDown(350);
    //},function(){
    //     var child = $(this).children('ul');
    //    child.stop(true, true).delay(200).slideUp(250);
    //}); 
});

