/*
* Copyright(c) 2009
*
*/

// create application
bh = function() {

    // do NOT access DOM from here; elements don't exist yet

    // private variables

    // private functions

    // public space
    return {
        // public properties, e.g. strings to translate

        // public methods
        init : function() {
        	bh.behaviour.init();
        }

    }
}(); // end of app

jQuery.fn.suckerfish = function() {
     if ($.browser.msie && $.browser.version*1 < 7){
         this.find("li").hover(function(){
             $(this).addClass('sfhover');
         },
         function(){
             $(this).removeClass('sfhover');
        });
     }
}


// end of file
