//
// $Id: BoatAlerts.js,v 1.1.1.1 2010/02/26 08:30:04 steve Exp $
//
var BoatAlerts = function() {

    this.contactUs = new ContactUs()
    this.thickbox  = new ThickBoxGeneric()
    
    this.init = function() {
    
        var self = this
    
        self.thickbox.init()

        self.contactUs.emailOnly = 1
        
        $('#newsBoatAlertButton').click( function() { self.contactUs.submitContactUs('NewBoatAlert') })
    }   
}