/** Javascript for cramerdev.com */

$(document).ready(function() {

	// Start slideshow
	(function startSlideshow() {
		$('#slideshow').cycle();
	})();
	
	// Replace text in input elements
	(function replaceInputText() {
	
		var iText;
	
		$('input').focus(function () {
			iText = $(this).attr("value");
			$(this).attr("value", "");
		});
		$('input').blur(function () {
			if ($(this).attr("value") === "") {
				$(this).attr("value", iText);
			}
		});		
				
	})();

	
});
