
/*Tabs Start*/

$(document).ready(function(){

	$(".tab:not(:first)").hide();

	$(".htabs a:first").addClass("active");
	$(".tab:first").show();

	$(".htabs a").click(function(){
		$(".htabs a").removeClass();
		$(this).addClass("active");
	
		stringref = $(this).attr("href").split('#')[1];
		$('.tab:not(#'+stringref+')').hide();
		$('.tab#' + stringref).fadeIn();
		return false;
	});
 
});

/*Tabs End*/