$(document).ready(function(){
	
	// smooth fading slide show settings
	$('#homePageSlideShow') 
	.before('<div id="navigator">') 
	.cycle({ 
	    fx:     'fade', 
		timeout: 12000,
		cleartype:  true,
		cleartypeNoBg: true
	});
	
	// search form click and click out
	$('.default-value').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});
	
	// image captions
	$('img.add_caption').jcaption();
	
});
