$(document).ready(function(){
	$("#navigation li a").each(function(){
		if( window.location.href.indexOf( $(this).attr('href') ) >= 0 && $(this).attr('href').length > 1 ) {
//			$(this).parent('li').addClass('selectedLava');
			$(this).addClass('selected');
		}
	});

	$("a.group").fancybox({
		transitionIn: 'elastic',
		transitionOut: 'elastic',
		speedIn: 600, 
		speedOut: 200,
		overlayShow: true
	});
	
	$("#navigation li").hover(function(){
		$(this).addClass('hover');
	}, function(){
		$(this).removeClass('hover');
	});
	
//	$("#navigation").lavaLamp({
//		fx: 'swing',
//		speed: 400
//	});

	$("a.fancyvideo").fancybox({
		overlayShow: true,
		overlayOpacity: 0.9,
		frameWidth: 720,
		frameHeight: 405
	});
	
	jQuery.smoothAnchors("normal", "swing", false);
});