$(function() {
	
	$('#slider ul').jcarousel({
		auto: 5,
        scroll: 1,
		duration: 7500,
        wrap: 'circular'
    });
    
    $('.field').focus(function() {
	    if(this.title==this.value) {
	        this.value = '';
	    }
	}).blur(function(){
	    if(this.value=='') {
	        this.value = this.title;
	    }
	});
});
