//This section add a left and right rounded span to each link of the header menu
 $(document).ready(function()
 {
    $.preloadCssImages();

    $('ul#header-top-nav li ul').hover(function (){
        $('a#the-bookmakers').addClass('active-link');
    }, function(){
        $('a#the-bookmakers').removeClass('active-link');
    });

    //Add the rounded effect to each link which is hovered
    $('#commentform-top p').corner("15px");
    $('#commentform-bottom p').corner("15px");
    $('#comment').corner("15px");
    $('.commentlist li p').corner("15px");
 });


