    function slideSwitch(switchSpeed) {
        var $active = $('#slideshow IMG.active');
        
        if ( $active.length == 0 ) $active = $('#slideshow IMG:last');
    
        var $next =  $active.next('IMG').length ? $active.next('IMG')
           : $('#slideshow IMG:first');
    
        /*
        var $sibs  = $active.siblings();
        var rndNum = Math.floor(Math.random() * $sibs.length );
        var $next  = $( $sibs[ rndNum ] );
        */
        
        $active.addClass('last-active');
        
        
        $next.css({opacity: 0.0})
            .addClass('active')
            .animate({opacity: 1.0}, switchSpeed, function() {
                $active.removeClass('active last-active');
            });
    }
    
    $(function() {
        setInterval ( "slideSwitch(1000)", 5000 );    
    });
    
    $(function() {
        $('#gallery a').lightBox();
    });
    
    $(document).ready(function() {
        $('small').html('<a style="color: rgb(0, 0, 255); text-align: left;" href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=88+Lurline+Street,+Katoomba,+New+South+Wales&amp;sll=37.0625,-95.677068&amp;sspn=19.370971,93.164063&amp;ie=UTF8&amp;ll=-33.718468,150.312538&amp;spn=0.006247,0.00912&amp;z=16&amp;iwloc=A" target="_BLANK">View Larger Map</a>');
    });
    
    $(function() {
    	$('.date-pick').datePicker();
    });
