$(function(){

	// navigation fixes
    $('li.ON').parents().removeClass('ON');
    $('li').not('*:last-child').removeClass('last');
    $('li:last-child').addClass('last');
        
    $('#footer li:not(.last)').append(' | ');     

    if($.browser.msie) {  
    	// IE hover fixes for smaller modules
        $('div.smaller_module').hover(
            function(){
                elem=this;
                $(elem).find('img.bw').css('display', 'none');
                $(elem).find('img.color').css('display', 'block');
                $(elem).find('p, span').css('background-color', '#DEF'); 
            },
            function(){
                elem=this;
                $(elem).find('img.color').css('display', 'none');
                $(elem).find('img.bw').css('display', 'block');
                $(elem).find('p, span').css('background-color', '#EED'); 
            }
        );

    };
    
    

});
