// jquery plugins

// tab interface
$.fn.tab = function(){
	var $tabNav = $(this).find("a");
	$tabNav
		.each(function(){
			if( !$(this).is(".active") ){
				$( $(this).attr("href") ).hide();
			}
		})
		.click(function(){
			if( !$(this).is(".active") ){
				$tabNav
					.each(function(){
						if( $(this).is(".active") ){
							$( $(this).attr("href") ).hide();
							$(this).removeClass("active");
						}
					})
				.end();
				$( $(this).attr("href") ).show();
				$(this).addClass("active");
			}
			return false;
		})
	.end();
	return this;
};




