/** CUFON *********************************************************************/
Cufon.replace('h1.cufon, h2.cufon, h3.cufon, h4.cufon', {
	fontFamily: 'DIN'
});

/** jQUERY MAGIC **************************************************************/
$(document).ready(function() {
	
	$(".tickerbox").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 1,
		auto:3500,
		speed:1000
	});
	
    /**
     * Navigation
     */
	$("#nav li").hover(function(event) {
		
		$(this).find('ul:first').show();
		$(this).find('ul:first').parent().addClass("sel");
		
	}, function(event) {
		
		$(this).find('ul:first').hide();
		$(this).find('ul:first').parent().removeClass("sel");
		
	});

});