$(document).ready(function(){
	
	$("input").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	$('.wpcf7-form select').sSelect();
	
	$('#gallery').cycle({
		fx: 'scrollHorz',
		timeout: 0,
		pager:  '#galleryNav',
		pause: true,
		pauseOnPagerHover: true,
		pagerAnchorBuilder: function(idx, slide) { 
				        // return selector string for existing anchor 
				        return '#galleryNav li:eq(' + idx + ') a'; 
				    }
	});
	
});

