$(document).ready(function() {
    var
    $subnavlinks = $('#sub-nav a'),
    $textcontainer = $('#text-container'),$target;

    $subnavlinks.hover(function() {
        target = $(this).attr('href');$target = $(target);
        $($textcontainer).stop(true,true).fadeIn(500)
        $target.stop(true,true).fadeIn(500);
    }, function() {
        $target.stop(true,true).fadeOut(100);
        $($textcontainer).stop(true,true).fadeOut(100)
    });


    var
    $logoslist = $('#logos li');

    $logoslist.hover(function() {
        $(this).find('.text-container').stop(true,true).fadeIn(500);
    }, function() {
        $(this).find('.text-container').stop(true,true).fadeOut(500);
    });

    var
    $logo = $('#logo');

    $logo.hover(function() {
        target = $(this).attr('href');$target = $(target);
        $target.stop(true,true).fadeIn(500);
    }, function() {
        $target.stop(true,true).fadeOut(100);
    });
    
    // Open external links in a new window
    $("a[href*='http://']:not([href*='"+location.hostname+"'])").click( function() {
      window.open( $(this).attr('href') );
      return false;
    });

});

