$(function(){
    $('.blink').
        focus(function() {
            if(this.title==this.value) {
                this.value = '';
            }
        }).
        blur(function(){
            if(this.value=='') {
                this.value = this.title;
            }
        });
        
    $('#slider ul').jcarousel({
		visible: 1,
		scroll: 1, 
		wrap: "both"
	});
})
