// JavaScript Document (jQuery)

/***
*
* Page Events
*
*/

$(document).ready(function(){
    if (document.all) {
        $("#subnavigation li").hoverClass("hover");
    }
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};    

/***
*
* Functions
*
*/

