 $(document).ready(function(){
				
	var propName = getStyleProperty('-webkit-mask-image');
	var propName2 = getStyleProperty('textShadow');

		if (!propName) {
		$("body").addClass("no-mask-image");
	}
	
	if (!propName2) {
		$("body").addClass("no-text-shadow");
	}
		
	$('div.input input').focus(function() {
	    if (this.value == this.defaultValue){ 
	    	this.value = '';
		}

		if(this.value != this.defaultValue){
  			this.select();
  		}
	});

	$('div.input input').blur(function() {
	    if ($.trim(this.value) == ''){
	    	this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});
		
	$('div.stage-text, div.stage-images').cycle({
		delay: 3000,
		speed: 1000
	});

});
