jQuery.noConflict();
			
jQuery(window).load(function(){
	jQuery('#preloader').fadeOut(200,function(){$(this).remove();});
	
});

jQuery(document).ready(function() {
	
	jQuery("ul.subnav").removeClass("hide");
	
	jQuery('a[rel=external]').click( function() {
		window.open(this.href);
		return false;
	});
	
   	jQuery("ul.disactive").hide(); //Hide all content
   
   	//On Click Event
   	jQuery("ul.nav li.nav_link").click(function() {
   
   		jQuery("ul.nav li.nav_link").removeClass("active"); //Remove any "active" class
   		jQuery(this).addClass("active"); //Add "active" class to selected tab
   		jQuery("ul.subnav").hide(); //Hide all tab content
   
   		var activeTab = jQuery(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
   		jQuery(activeTab).fadeIn(200); //Fade in the active ID content
   		return false;
   	});
   
});
