$(document).ready(function(){
//rollovers for tabs
    $('ul#navigation li').hover(
    function(){
        $(this).css({"background" : "#261e1a url(images/navigation_active_top_curve.gif) no-repeat top left",
                        "color": "#ef6e20",
                        "padding-bottom" : "10px"});
        $(this).children("a").css({
                        "color": "#ef6e20",
                        "font-weight": "bold",
                        //"background": "url(images/navigation_indicator.gif) no-repeat bottom center",
                        "padding-bottom": "9px"});
        },
     function(){
        var_class = $(this).attr('class');
        if (var_class != 'active'){
            $(this).css({"background" : "#e9e8e8 url(images/navigation_top_curve.gif) no-repeat top left",
                            "color": "#261e1a",
                            "padding-bottom" : "2px"});
            $(this).children("a").css({
                            "color": "#261e1a",
                            "font-weight": "normal",
                            "background": "",
                            "padding-bottom": "0px"});
            }
     });
});