jQuery(document).ready(function() {
 
	$('.home-teaser-wrapper .teaser-list-slider').anythingSlider({
		   width 			   : 940,
		   height 			   : 300,
		   animationTime 	   : 500,
		   expand			   : true,
		   delay			   : 4000,   	       
   	       startPanel          : 1,    
   	       showMultiple        : false,
   	       resizeContent	   : false,
   	       buildNavigation     : false,
   	       buildArrows         : true,
   	       enableStartStop     : false,
   	       autoPlay            : false,
   	       infiniteSlides      : true,
   	       enablePlay          : false,
   	       buildStartStop      : false,
   	       onInitialized : function() {
   	    	   $('.teaser-list-slider').css({ opacity : '0.0'});
               $('.teaser-list-slider').show();
   	    	   $('.teaser-list-slider').fadeTo(500,1.0); 
   	       }
	});
	
	$('.home-teaser-wrapper .teaser-list-slider > li div.item').hoverIntent(function() {
		$(this).animate({ backgroundColor : '#3B3B3B'}, 300);
		$(this).find('div.text').animate({ color : '#FFFFFF' },300);
		//$(this).find('div.link a').animate({color : '#F39100'},300);
	},function() {
		$(this).animate({ backgroundColor : '#292827'}, 300);
		$(this).find('div.text').animate({ color : '#9B9B9B' }, 300);		
	})
});
