//
// $Id: Site.js,v 1.1.1.1 2010/02/26 08:30:04 steve Exp $
//
$(document).ready(

    function() {

        cms = new CMS()
        cms.init()
                
        login = new Login(COOKIENAME)
        login.init()

        thickBox   = new ThickBoxGeneric()
        thickBox.applyThickBox($('a.thickbox'))

        email = new Emails()
        email.init()
        
        if ($('#boatSummariesDiv').length) {
            boat = new BoatSummaries()
            boat.init()
        }
        
        if ($('#content a.popUpImage').length) {
            lBox = new LightBoxGeneric()
            lBox.applyLightBox($('#content a.popUpImage'))
        }

        if ($('div.contentGallery').length) {
            lBox = new LightBoxGeneric()
            lBox.applyLightBox($('#contentGallery_1 a'))
        }
        
        if ($('table.manufacturersLinksTable').length) {
            manufacturers = new Manufacturer()
            manufacturers.initDisplay()
        
        }
    }
)

