jQuery(document).ready(function($){
	$("form input").focus(function () {
	if ($(this).val() === $(this).attr("title")) {
	$(this).val("");
	}
	}).blur(function () {
	if ($(this).val() === "") {
	$(this).val($(this).attr("title"));
	}
	}); 
	if($('.print').length){
		$('.print').live('click', function(event){
			event.preventDefault();
			window.print();
		});
	};
	if($('#slideshow').length){
		$('#slideshow').cycle({
			cleartypeNoBg: true,
			timeout: 6000,
			pause: true
		});
	};
});
