// JavaScript Document
$(document).ready(function(){
	
	$('input[type=text]').bind('focus',function() {
		if ($(this).val() == $(this).attr('alt')) {
			$(this).val('');
		}
		$(this).addClass('selected');
	});
	
	$('input[type=text]').bind('blur',function() {
		if ($(this).val() == '') {
			$(this).val($(this).get(0).defaultValue);
		}
		$(this).removeClass('selected');
	});
	
});
