function dom_init() {

 $('.navigation li a').click(function(){
 	
 	if ($(this).next('ul').hasClass('open') == true){
 	
 	} else {
 		$('ul.open').slideUp(300).removeClass('open');
 	}
 	
 	$(this).next('ul').slideToggle(300).addClass('open'); 	
 });
  
  
 $('#gallery').galleria({
        width:600,
        height:449,
        show_counter : false,
		carousel : true,
		thumbnails : true,
		show_imagenav : false,
		transition : 'flash',
		minScaleRatio : 1,
		maxScaleRatio : 1 
    }); 
 
}
