$(function(){
	$("#navigation ul li").hover(function() {
		if(!($(this).find(".dd").is(':animated')) && $(this).find(".dd").length)
		{
			$(this).find(".dd").slideDown();
			$(this).find("a:eq(0)").addClass('hover');
		}
			
		}, function(e) {
		var t = $(this);
		$(this).find(".dd").slideUp(function(){
			t.find("a:eq(0)").removeClass('hover');
		});
	});
	
	$('.blink').focus(function () {
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	});
	
	$('.blink').blur(function () {
		if ($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	});
	
	$(".slider").jcarousel({
	    scroll: 1,
	    auto: 5,
	    wrap: 'circular',
	    buttonNextHTML: null,
	    buttonPrevHTML: null
	}); 
	
})
