//=====================================================//
var LoadReadyLocal = {

    newsletterForm: function(){
        $(function() {
            Contact.setupNewsletterForm();
        });
    },

    gallery: function(){
        $(function() {
            $('#col2_content a.relatedImage').click(function(e) {
                
                if ($(this).hasClass('loadVideo')){
                    Gallery.loadVideo.call(this, e);
                } else {
                    Gallery.getLargeImage.call(this, e);
                }
            });

            Gallery.showImage();
        });
    }
};

LoadReady = $.extend(LoadReady, LoadReadyLocal);


$(function() {
    $('div.galleryRow').hover(
        function(e) {
            $(this).toggleClass('highlight');
        },
        function(e) {
            $(this).toggleClass('highlight');
        }
    );

    var options = {showArrows: true};
    $('#gallery_items').jScrollPane(options);
    $('.clientList').jScrollPane(options);
});


