var j = jQuery.noConflict();
j(document).ready(function() {
	j("ul li:last-child").addClass('last-child');
	
	j('.slideshow').cycle({
		random: true
	});

	//Clear Inputs / Textareas that are not of the type 'submit'
	j('input,textarea').each(function() {
		if( ( j(this).attr('type') != 'submit' ) && ( j(this).attr('type') != 'button' ) ){var default_value = this.value;j(this).focus(function() {if(this.value == default_value) {this.value = '';}});j(this).blur(function() {if(this.value == '') {this.value = default_value;}});}j(this).hover(function(){j(this).addClass('display');},function(){j(this).removeClass('display');});});
});
