$(function() {
	
	$("ul.idTabs li a").click(function(){
		var hideTabs = $("#" + this.id).attr("rel");
		$("."+hideTabs).hide();
		$("#"+this.id+"-cnt").show();
		return false;
	});

	
	
});

