$(document).ready(function(){
    /* Navbar */
    $("ul#topnav li").hover(function() { //Hover over event on list item
        $(this).css({'background' : '#CC0000 url(images/topnav_active.png) repeat-x'}); //Add background color and image on hovered list item
        $(this).find("span").show(); //Show the subnav
    } , function() { //on hover out...
        $(this).css({'background' : 'none'}); //Ditch the background
        $(this).find("span").hide(); //Hide the subnav
    });

    /* Corner */
    $(".round").corner();
    $("#topnav").corner();
    $(".first").corner("left");
    $(".round_bt").corner("bottom");
    $("ul#topnav li span").corner("bottom");
});