// JavaScript Document
$(document).ready(function(){
   $("input").each(function(){
		$(this).bind('focus',function() {
			if ($(this).val() == $(this)[0].defaultValue) {
			$(this).val('');
			$(this).addClass('filled');
			}
		});
		$(this).bind('blur',function() {
			if($(this).val() ==""){
				$(this).val($(this)[0].defaultValue);
				$(this).removeClass('filled');
			}
		});
	})
});

