	$("#content a").mouseover(function(){
		$(this).stop();
		$(this).fadeTo(300, 0.5);
	}).mouseout(function(){
		$(this).stop();
		$(this).fadeTo(300, 1);
        });

