$(document).ready(function(){
	$('.slideshow').cycle({ 
	    fx:     'fade', 
	    speed:  2000, 
	    next:   '.slideNext', 
	    prev:   '.slidePrev', 
	    timeout: 8000, 
	    startingSlide: 0
	});
	
	$('#searchfield').click(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	$('#searchfield').blur(function() {
		if (this.value == '') {
			this.value = this.defaultValue;
		}
	});
	$(".marker").hover(
		function () {
			$(".info-box", this).fadeIn("fast");
		},
		function () {
		    $(".info-box", this).hide();
		}
	);
});
