$(function(){
	// Blinking Fields
    $('.blink').
        focus(function() {
            if(this.title==this.value) {
                this.value = '';
            }
        }).
        blur(function(){
            if(this.value=='') {
                this.value = this.title;
            }
        });
        
    // Navigation  Drop Down  
  	$('#navigation ul li').hover(
  		function(){
  			if ( $(this).find('.dd:eq(0)').length ) {
  				$(this).find('a:eq(0)').addClass('hover');
  			};
  			
  			$(this).find('.dd:eq(0)').show();
  		},	
  		function(){
			$(this).find('.dd:eq(0)').hide();
			$(this).find('a:eq(0)').removeClass('hover');
  		}
  	);
  	
  	// Add class "last" to the last image of jCarosel item
	
	 	
  	// Slider
	$('.slider ul').jcarousel({
		auto: 5, 
		scroll: 1,
		animation: 'slow',
		visible: 4,
		wrap: "both",
		initCallback: function() {
			$('.slider .jcarousel-item a:last-child').addClass('last');	
		}
	});
	
	
	
})

