// JavaScript Document

$(function() {
	
	// Typography
	Cufon.replace('#navigation > li > a', { fontFamily: "Gotham", hover: true })('#home h2', { fontFamily: "EraserDust" })('.secondary h2', { fontFamily: "Gotham" })('#home h3', { fontFamily: "Gotham" })('#home h4', { fontFamily: "Gotham" });

	// Login
	$('#uid').defaultvalue('Username');
	$('#pwd').after('<input type="text" id="pwd-text" class="password" name="pwd-text" />').hide();
	$('#pwd-text').show();
	$('#pwd-text').val('Password');
	
	$('#pwd-text').focus(function() {
		$('#pwd-text').hide();
		$('#pwd').show();
		$('#pwd').focus();
	});
	$('#pwd').blur(function() {
		if($('#pwd').val() == '') {
			$('#pwd-text').show();
			$('#pwd').hide();
		}
	});
	
	// Navigation
	$('#navigation li').hover(
		function() {
			$(this).addClass('hover');
		}, function() {
			$(this).removeClass('hover');
		}
	);
	
});
