// Corner Styles
$('.extra').corner('5px'); 
$('.popout').corner('3px'); 
// initialise Superfish 
 
    $(document).ready(function(){ 
        $("ul.sf-menu").superfish({ 
            delay:     50               // 1.2 second delay on mouseout 
        }); 
        
        
        
        $("li.home").keypress(function(e) {
            
            if(e.which==101) {
                location.href="/cms/edit"+location.pathname;
                $(e.currentTarget).blur()
                var a = $(e.currentTarget).find("a")
                $(e.currentTarget).html(a.html());
            }    
            return false;
        })
        
    }); 
 
