// when the DOM is ready...
$(document).ready(function () {
	
	$('#features').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence'}); 
	$('#store-ads').innerfade({ speed: 'slow', timeout: 3000, type: 'sequence'}); 	

    $("#s-input").focus(function() {
        if( this.value == this.defaultValue ) {
            this.value = "";
        }
    }).blur(function() {
        if( !this.value.length ) {
            this.value = this.defaultValue;
        }
    });

});