//////////////////////////////////	
// CoreEngine Frontend JavaScript
//////////////////////////////////	

$(document).ready(function() {
	//////////////////////////////////	
	// Superfish plugin
	//////////////////////////////////	
	$('ul.sf-menu').superfish({ 
		delay: 0,                   
		animation: {opacity:'show',height:'show'},  
		speed: 300,                          
		autoArrows: false,                      
		dropShadows: false                          
	}); 

	//////////////////////////////////	
	// jQueryUI datepicker
	//////////////////////////////////	
	$("#datepicker").datepicker({ dateFormat: 'dd.mm.yy' });
	
	//////////////////////////////////	
	// Carousel plugin
	//////////////////////////////////		
	$("div.eventCarousel").carousel( {
			loop: true,
            nextBtn: '<div id="eventCarouselNext"><a role="button"><img src="http://juventhusias.de/images/frontend/carousel_next.png" width="30" height="30" alt="prev" /></a></div>',
            prevBtn: '<div id="eventCarouselPrev"><a role="button"><img src="http://juventhusias.de/images/frontend/carousel_prev.png" width="30" height="30" alt="next" /></a></div>'
	});
});

