Cufon.replace(".global-arrow", { fontFamily: 'Webdings' }); // Setting Cufon for arrows in links
var $R = jQuery.noConflict(); //Setting JQuery no conflict
$R(document).ready(function() {

    //Getting rid of some annoying borders
    $R(".topnav-nav-navitems li:last-child").prev().css("border-right", "0px");
    $R(".topnav-nav-navitems li:last-child").css("border-right", "0px");



    $R("a.header-head-signin").hover(function() {
        $R(".header-head-signinbox").css("display", "block");
        $R(".header-head-signinbox").css("right", "20px");
    }, function() {
        $R(".header-head-signinbox").css("right", "-999px");
        $R(".header-head-signinbox").css("display", "none");
    });

    $R(".header-head-signinbox").hover(function() {
        $R(this).css("display", "block");
        $R(this).css("right", "20px");
    }, function() {
        $R(this).css("display", "none");
        $R(this).css("right", "-999px");
    });

});



