$(document).ready(function(){
						   
	nanotabs({c:"idTabs", e:"click", s:"selected", d:0, f:false});
	
	$("ul#main-navigation").superfish();
	//$("ul.navigation-top-ul ul li:last-child a").addClass("no-border");
	
	$('#tabbed-area .tabbed').hide();
	$('#tabbed-area #tab-1').show();
	$('.home-tabs a.news').addClass('active');
	
	$('.home-tabs a').click(function(){
		$('.home-tabs a').removeClass('active');
		$(this).addClass('active');
		
		$('#tabbed-area .tabbed').hide();
		
		var url = $(this).attr('href');
		$(url).show();
		
		return false;
	});

});
