$(document).ready(function(){
		$(".tabs a:first").addClass("selected");
		
		$(".tabs a").click(function () {
			
			if ($(this).hasClass("selected")){ }
			else {
			// switch all tabs off
			$(".selected").removeClass("selected");
			
			// switch this tab on
			$(this).addClass("selected");
			
			// slide all content up
			$(".tab-content").slideUp(400);
			
			// slide this content up
			var content_show = $(this).attr("rel");
			$("#"+content_show).slideDown(400);
			}
		});;
 
});

