//This is where this script comes from //

	  // When the document loads do everything inside here ...
	  jQuery(document).ready(function(){
		
		// When a main tab link is clicked
		jQuery("a.tab").hover(function () {
			
			
			// switch all tabs off
			jQuery(".active").removeClass("active");
			
			// switch this tab on
			jQuery(this).addClass("active");
			
			// hide content
			jQuery(".maintabcontent").hide();
			
			// fadeIn this content
			var content_show = jQuery(this).attr("rel");
			jQuery("#"+content_show).show();
		  
		});
	
	  });
	  

