    $(document).ready(function() {
	var jQtabs = jQuery; 
    	//Default Action
    	jQtabs(".tab_content").hide(); //Hide all content
    	jQtabs("ul.tabs li:first").addClass("active").show(); //Activate first tab
    	jQtabs(".tab_content:first").show(); //Show first tab content
    	//On Click Event
    	jQtabs("ul.tabs li").click(function() {
    		jQtabs("ul.tabs li").removeClass("active"); //Remove any "active" class
    		jQtabs(this).addClass("active"); //Add "active" class to selected tab
    		jQtabs(".tab_content").hide(); //Hide all tab content
    		var activeTab = jQtabs(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
    		jQtabs(activeTab).fadeIn(); //Fade in the active content
    		return false;
    	});
    });


