jQuery(function(){
    Shadowbox.init();
    $('#news-feed').css('min-height',($('#content').height()-20)+'px');
    $('#header ul li').hover(
    function(){
        $(this).find("ul").show(); 
    },
    function(){
        $(this).find("ul").hide();
    });
    
    $('a[rel="external"]').click(function(e){
        e.preventDefault();
        window.open($(this).attr('href'));
    });
    
    $('#facebook-wall').fbWall(
    {
        id:'261051271733',
        showGuestEntries:false,
        showComments:false,
        max:3,
        timeConversion:24
    });
});
