﻿$(document).ready(function(){

	//SiteIntro Toggle
	$("#module_siteintro li.intro-welcome a.v-tab").click(function(){
		if ( !(jQuery.browser.safari)) { 
			$("#module_siteintro div#welcome").animate({width: 'toggle'});
		}else{
			$("#module_siteintro div#welcome").toggle();
		}
		return false;
	});
	$("#module_siteintro li.intro-howto a.v-tab").click(function(){
		if ( !(jQuery.browser.safari)) { 
			$("#module_siteintro div#welcome").animate({width: 'toggle'});
		}else{
			$("#module_siteintro div#welcome").toggle();
		}
		return false;
	});	
	
	
	// Siteintro Howto Content Replacement
	$("#module_siteintro .howto-nav li a").click(function(){
		$("#module_siteintro .howto-nav li a").removeClass("active");
		$(this).addClass("active");
		$("#howto-master").hide();
		$($(this).attr("href")).insertAfter("#howto-master").show();
		$($(this).attr("href")).siblings("div.alternate").hide();
		$("#howto").removeClass();
		$("#howto").addClass($(this).attr("href").replace("#", ""));
		return false;
	});
	
	


	
});