$(function() {
    $('a[rel*=external]').click( function() {
        window.open(this.href);
        return false;
    });
});


$(document).ready(function() {
	$("a.logo").hover(function() { 
		$(this).find("span").stop().fadeTo('normal', 0 , function() {
			$(this).hide()
		});
	} , function() {
		$(this).find("span").stop().fadeTo('normal', 1).show();
	});

});

