$(document).ready(function(){
	$('#innavigation > ul >li > a').each(function(){
		if(window.location.href.match($(this).attr('href'))){
			$(this).addClass('active');
		}else if(typeof(menu_name) !== 'undefined' && $(this).attr('href').match(menu_name) && !window.location.href.match('sitemap')){
			$(this).addClass('active');
		}
	});
	var gallery = $('div.photo>a');
	if(gallery.length>0){
		$('div.photo>a').fancybox({
			'imageScale':false,
			'transitionIn':'fade',
			'transitionOut':'fade',
        		'centerOnScroll':false,
			'titlePosition':'over',
			'onComplete': function(){
				$('img#fancybox-img').attr('title', '');
				$('img#fancybox-img').attr('alt','');
			}
		});
	}
});

