$(document).ready(function() {

	//$('#carousel').gallery({pause:5000});
	$('#carousel').gallery();
	$('.slideshow').gallery();
	
	$("#email").clearform();
});

//generic field clear
$.fn.clearform = function() {
	return this.focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};

