 $(document).ready(function(){
		
	// Menu active item
	var nav  = $('#head ul');
    var path = window.location.pathname.split('/').slice(1,-1);
    function act(p) {
        nav.not(nav.find('a.active').parent().parent())
            .find('li>a[@href="/'+p+'"]').addClass('active');
    }
    if (path.length)
        for(; path.length; path.pop())
            act(path.join('/')+'/');
    else
        act('');


    // Images
    $('#content .images li:first-child').addClass('active');
	
	$('#content .images li:only-child').parents('ul').css('display','none');
	
	$('#content .images').galleria({
	  insert:'#main_img',
		history:false,
		onImage : function(image,caption) { image.css({display:'none'}).fadeIn('fast'); },
		onThumb : function(thumb) { thumb.css('display','none').fadeIn('slow'); }
	});

});
