            var footerHeight = 0, footerTop = 0, $footer = $("#footer");

            function fadeAllOut() {
                $('#popups').children('.showPopup').fadeOut(100).removeClass('showPopup');
            }
            
            function fadeIn(link, popup) {
                if (popup.hasClass('showPopup')) {
                    popup.fadeOut(100).removeClass('showPopup');
                } else {
                    fadeAllOut();
                    popup.delay(200).slideDown(500).addClass("showPopup");  
                }
            }

            function positionFooter() {
                footerHeight = $("#footer").height();                
                footerTop = ($(window).scrollTop()+$(window).height()-footerHeight)+"px";                
                $("#footer").css({position: "absolute", top: footerTop});  
            }         
                        
            $(document).ready(function(){
                positionFooter();
                $(window).scroll(positionFooter).resize(positionFooter);

                //  Initialize Backgound Stretcher
                $('BODY').bgStretcher({
                    images: ['/assets/images/background/swan.jpg', '/assets/images/background/sailing-low.jpg',
                             '/assets/images/background/benainslie.jpg', '/assets/images/background/policeflag.jpg',
                             '/assets/images/background/beach.jpg', '/assets/images/background/napoli.jpg',
                             '/assets/images/background/travel.jpg', '/assets/images/background/sailing-1000.jpg',
                             '/assets/images/background/bikinigirl.jpg', '/assets/images/background/field.jpg'],
                    imageWidth: 1440, 
                    imageHeight: 1024,
                    nextSlideDelay: 10000,
                    transitionEffect: "superSlide",
                    slideDirection: "W",
                    preloadImg: true
                });
                                
                $("a.popup").fancybox({
        		    'speedIn'		:	1000, 
        		    'speedOut'		:	200, 
        		    'titleShow'     :   false,
        		    'overlayShow'	:	true});
        		    
                $('#pop-aboutus').bind('click', function() {
                    fadeIn(this, $('#popup-aboutus'));
                });

                $('#pop-newsphoto').bind('click', function() {
                    fadeIn(this, $('#popup-newsphoto'));
                });
                
                $('#pop-prcommercial').bind('click', function() {
                    fadeIn(this, $('#popup-prcommercial'));
                });
                
                $('#pop-travel').bind('click', function() {
                    fadeIn(this, $('#popup-travel'));
                });
                
                $('#pop-sailing').bind('click', function() {
                    fadeIn(this, $('#popup-sailing'));
                });
                
                $('#pop-cuttings').bind('click', function() {
                    fadeIn(this, $('#popup-cuttings'));
                });
                
                $('#pop-contactus').bind('click', function() {
                    fadeIn(this, $('#popup-contactus'));
                });
                                
            });

