$(document).ready(function() {

	$("p#news_ticker a").click(function() {
	
		$("#home_news").hide();
		$("#home_sport").hide();
		$("#home_travel").hide();
		$("#home_weather").hide();
		$("#home_national").hide();
		
		$("#"+ $(this).attr("rel")).fadeIn();
		
		return false;
	
	});

});