// JavaScript Document
jQuery.noConflict();
jQuery(function(){
		   jQuery(".tab a:eq(0)").addClass("current");
		   jQuery(".tab_cont:gt(0)").hide();
		   if(window.location.hash=="#getstarted"){
			   jQuery(".tab a").removeClass("current");
			   jQuery(".tab_cont").hide();
			   jQuery(".tab a:eq(1)").addClass("current");
		  	   jQuery(".tab_cont:eq(1)").show();
		   }
		   if(window.location.hash=="#story"){
			   jQuery(".tab a").removeClass("current");
			   jQuery(".tab_cont").hide();
			   jQuery(".tab a:eq(2)").addClass("current");
		  	   jQuery(".tab_cont:eq(2)").show();
		   }
		   jQuery(".tab a").click(function(){
									  jQuery(".tab a").removeClass("current");
									  jQuery(this).addClass("current");
									  var content=jQuery(this).attr("content");
									  jQuery(".tab_cont").hide();
									  jQuery("#"+content).show();
									  return false;
									  });
		   });