﻿

jQuery(function($){

	$('.jqtabs:not(.jqtabs:eq(0))').hide();
	
	$('#tab a').each(function(i){

		$(this).click(function(){
							   
			$('.jqtabs:eq(' + i + ')').show();
			$('.jqtabs:not(.jqtabs:eq('+ i +'))').hide();
			
			$(this).parent().parent('ul').removeClass();
			$(this).parent().parent('ul').addClass('type' + i + ' clearfix' );
			
			return false;
		});
	});

});

