(function ($) {

$(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",
		animation: "slow",
		auto: 3
	});
});

$(function () {
	
	$("#navigation li").hover(function () {
		if ($(this).hasClass('active')) {
			return;
		}
		$(this).find('.hover').stop().fadeTo('slow', 1);
	}, function () {
		$(this).find('.hover').stop().fadeTo('slow', 0);
	});

})

})(jQuery)
