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

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

    gallery: function(){
        $(function() {
            $('#col2_content a.relatedImage').click(function(e) {
                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);
    $('#col3_content #col3_content2').jScrollPane(options);
    

});

