$(document).ready(function(){
	$("#tastenotes_mentions").corner();
	
	$(".tab").corner();
	
	$($(".tab:first").attr("href")).show();
	$(".tab:first").addClass("active");
		
		$(".tab").click(function (){
			var href = $(this).attr("href");
			
			$(".active_container").each(function (){
				$(this).hide();
				
			});
			
			$(".tab").each(function (){
				$(this).attr("class","tab");
			})

			$(this).addClass('active');
			$(href).fadeIn("slow");
			return false;
		});
});
