$(document).ready( function() {	
	//auto strip out email and password on click if they are empty
	$('#login-username, #login-password, #subscribe-email,#email,#password,#username').focus(function() {
		if( $(this).attr('value') == $(this).attr('alt') ) {
			$(this).attr('value','');
		}
	});

	$('#login-username, #login-password, #subscribe-email,#email,#password,#username').blur(function() {
		if( $(this).attr('value') == "") {
			$(this).attr('value',$(this).attr('alt'));
		}
	});
	$("a[rel*='external']").each(function() { 
		this.target = '_blank';
	});
});
