	$(document).ready(function() {
		$("#content span").hide();
		
		$("#content div a").hover(function(){
 			$(this).children("span").fadeIn("fast");
		},function(){
  			$(this).children("span").fadeOut("fast");
		});


    $('#content div a').click(function(){
        window.open(this.href);
        return false;
    });


		});
