$(function() {

	

	var clearMePrevious = "";

	// clear input on focus

	$(".clearMe").focus(function() {

		if($(this).val()==$(this).attr("title")) {

			clearMePrevious = $(this).val();

			$(this).val("");

		}

	});

	// if field is empty afterward, add text again

	$(".clearMe").blur(function() {

		if($(this).val()=="") {

			$(this).val(clearMePrevious);

		}

	});

	

	

	$('a.slideshow').lightBox(); // Select all links in object with gallery ID

	

	



	$('#rotator').show("slow");

	

	$('#rotator').cycle({ 

		fx:     'fade', 

		speed:   5000, 

		timeout: 5000, 

		next:   '#s3', 

		pause:   1 

	});

	

	

	

});


