$(document).ready(function() {

//CLIENT LOGIN DISPLAY
$('#clientLoginButton').click(function() {
	if ($("#login").is(":hidden")) {
        $("#login").slideDown("slow");
      } else {
        $("#login").slideUp("slow");
      }
});

//FORGOT PASSWORD
$('#clientLoginForm #loginForm .forgotPassword').click(function() {
	$("#clientLoginForm #loginForm").hide("fast", function () {
        $("#clientLoginForm #forgotPasswordForm").show("fast");
      });
});

//TAKING THE STAGE CONTENT HIDE SHOW
$('p.ttsOfferings a.list').click(function() {
	
	var contentToShow = $(this).attr('href');
	
	if ($(contentToShow).is(":hidden")) {
        $(contentToShow).show();
		$(this).addClass('on');
      } else {
        $(contentToShow).hide();
		$(this).removeClass('on');
      }
	  
	  return false;
	  
});


});

