/* 
 * TABS SCRIPT
 * Used in the top 'Search' module section of the Practice Area pages.
 * Project: LexisNexis' Communities
 *
 * From: http://justfreetemplates.com/blog/2009/08/31/ultra-simple-jquery-tabs.html
*/

$(document).ready(function() {
 
	$('.tabs a').click(function(){
		switch_tabs($(this));
	});
 
	switch_tabs($('.defaulttab'));
 
});
 
function switch_tabs(obj)
{
	$('.tab-content').hide();
	$('.tabs a').removeClass("selected");
	var id = obj.attr("rel");

	$('#'+id).show();
	obj.addClass("selected");
}