function dom_init() {

	$("ul.navigation ul").css("display", "none");
	
	$("ul.navigation li.active a").next("ul").css("display", "block");
	
	$("ul.navigation li a").click(function() {
		
		$(this).next("ul").slideDown(350).show();
		$(this).next("ul").css("display", "block");
		

		$(this).next("ul").hover(function() {
		}, function(){
			$(this).slideUp('slow');
		});
	});
	

$('#slideshow').innerfade({ 
   animationtype: 'fade', 
   speed: 1750, 
   timeout: 4500, 
   type: 'sequence', 
   containerheight: '216px'
   });

 $.localScroll();

}
