$(document).ready(function(){

	$("#login-email").focus(function() {
		if ($(this).val() == "Email Used To Create Account") {
			$(this).val("");
		}
	});

	$("#login-email").blur(function() {
		if ($(this).val() == "") {
			$(this).val("Email Used To Create Account");
		}
	});
});


$(document).ready(function() {

	$("a#persona-isendyouremail").click(function(){ 
	    $("a.persona-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.profile-quote').hide();
	    $('#profile-isendyouremail').show();
	});
	
	$("a#persona-ecocard").click(function(){ 
	    $("a.persona-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.profile-quote').hide();
	    $('#profile-ecocard').show();
	});
	
	$("a#persona-chelpixie").click(function(){ 
	    $("a.persona-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.profile-quote').hide();
	    $('#profile-chelpixie').show();
	});

	$("a#persona-vintank").click(function(){ 
	    $("a.persona-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.profile-quote').hide();
	    $('#profile-vintank').show();
	});

	$("a#persona-coast").click(function(){ 
	    $("a.persona-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.profile-quote').hide();
	    $('#profile-coast').show();
	});

	$("a#persona-kidoinfo").click(function(){ 
	    $("a.persona-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.profile-quote').hide();
	    $('#profile-kidoinfo').show();
	});

});




$(document).ready(function() {

	$("a.screencast-list-contacts").click(function(){ 
	    $("a.feature-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.feature-screen').hide();
	    $('#contacts').show();
	});

	$("a.screencast-list-socialmedia").click(function(){ 
	    $("a.feature-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.feature-screen').hide();
	    $('#socialmedia').show();
	});

	$("a.screencast-list-communications").click(function(){ 
	    $("a.feature-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.feature-screen').hide();
	    $('#communications').show();
	});

	$("a.screencast-list-supertags").click(function(){ 
	    $("a.feature-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.feature-screen').hide();
	    $('#supertags').show();
	});

	$("a.screencast-list-lists").click(function(){ 
	    $("a.feature-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.feature-screen').hide();
	    $('#lists').show();
	});

	$("a.screencast-list-batchbox").click(function(){ 
	    $("a.feature-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.feature-screen').hide();
	    $('#batchbox').show();
	});

	$("a.screencast-list-todos").click(function(){ 
	    $("a.feature-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.feature-screen').hide();
	    $('#todos').show();
	});

	$("a.screencast-list-webforms").click(function(){ 
	    $("a.feature-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.feature-screen').hide();
	    $('#webforms').show();
	});

	$("a.screencast-list-integration").click(function(){ 
	    $("a.feature-link").removeClass("selected"); 
	    $(this).addClass("selected"); 
	    $('.feature-screen').hide();
	    $('#integration').show();
	});



});




