$(document).ready(function() {
	$("a.enlarged").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: false,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	});
	
	$("#username").focus(function(){
	  // only select if the text has not changed
	  if(this.value == this.defaultValue) { this.value = ''; }
	});
	
	$("#username").blur(function(){
	  // only select if the text has not changed
	  if(this.value == '') { this.value = this.defaultValue; }
	});
	
	$("#fakepass").focus(function(){
	  $("#fakepass").css("display","none");
	  $("#password").css("display","inline");
	  $("#password").focus();
	});
	
	$("#password").blur(function(){
	  if(this.value == '') { 
	  	$("#password").css("display","none");
		$("#fakepass").css("display","inline");
	  }
	});
});
