$(document).ready(function() {
 
  $("#slider").scrollable({
    items: 'li',
    circular: true
  }).navigator().autoscroll();


	$('input[type="text"]').focus(function() {
		$(this).removeClass('selected');
        if (this.value == this.defaultValue){
        	this.value = '';
    	}
        if(this.value != this.defaultValue){
	    	this.select();
        }
    });
    $('input[type="text"]').blur(function() {
        if (this.value == ''){
        	this.value = this.defaultValue;
    	}
		if (this.value != this.defaultValue){
			$(this).addClass('selected');
		}
    });
	
});
