$(document).ready(function() {
	//Add your jQueryness here.
	$('li:last-child').addClass('last-child');
	
	$('#slideshow').cycle({
		fx: 'scrollVert',
    next:   '#next',
    prev:   '#prev'
	});	
	//Clear Inputs / Textareas that are not of the type 'submit'
	$('input,textarea,select').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');});
	});
	
});
