jQuery(document).ready(function($) {
	$('ul li:last-child').addClass('last-child');

	//Clear Inputs / Textareas that are not of the type 'submit'
	$('input,textarea').each(function() {
		if($(this).attr('type')!= 'submit'){
			var default_value = this.value;
			$(this).focus(function() {
				if(this.value == default_value) {
					this.value = '';
				}
			});
			$(this).blur(function() {
				if(this.value == '') {
					this.value = default_value;
				}
			});
		}
		$(this).hover(function(){$(this).addClass('display');},function(){$(this).removeClass('display');});
	});
});
