jQuery(document).ready(function() { 
    
		$('ul.sf-menu').superfish({ 
			delay:       100,                                // one second delay on mouseout 
			//animation:   {opacity:'show',height:'show'},     // fade-in and slide-down animation 
			speed:       'normal',                          // faster animation speed 
			autoArrows:  true,                           // disable generation of arrow mark-up 
			dropShadows: false                            // disable drop shadows 
		}); 

        $('#slider').bxSlider({
		    pager:         true,
			controls:      false,
			auto:          true,
			speed:         1000,
			pause:         5000
				
	    });
		
		
		$('.buckets li').hover(function(){ 
		    $(this).find('.item').addClass('item-hover');
			
			Cufon.replace('ul.buckets li .item-hover h3', { color: '#242021' });  
			
		}, function(){
		    $(this).find('.item').removeClass('item-hover');
			
			Cufon.replace('ul.buckets li .item h3', { color: '#ec3a2c' });  
			
		});
		
		
		
		
});

