;(function($){

	/******************/
	/*** Navigation ***/
	/******************/

	// Add .dropdown to li's containing a ul
	$('#navigation ul>li:has(ul)').addClass('dropdown');

	// Set second level ul's opactity to 0
	$('#navigation ul>li ul').css('opacity', 0);

	// Add .hover to the li when hovering a tab
	$('#navigation ul>li').hover(
		function(){
			$(this).addClass('hover');
			$(this).find('ul').stop().animate({opacity: 1}, 400);
		},
		function(){
			$(this).removeClass('hover');
			$(this).find('ul').stop().animate({opacity: 0}, 400);
		}
	);


})(jQuery);


