jQuery(document).ready(function(){

	$("#main_menu table td:last a").addClass("last");

	$(".news_menu td:last").css({'backgroundImage' : 'none'});
	$('.news_menu td').each(function(index){
   	var i = 0;
		if ($(this).is('.active')) i=index ;
		if (i!=0) $('.news_menu td:eq('+(i-1)+')').css({'backgroundImage' : 'none'});
	})

	$("div.navi_submenu ul li a:last").css({'border' : 'none'});
	$("#main_menu table td a").hover(
		function () { $(this).addClass("active"); }, 
		function () { $(this).removeClass("active"); }
	);

	$('div.gallery_item div.title').each(function(i, el) {
		if (i%3 == 0) {$('div.gallery_item div.title').data('max_height', 0);}
		if ($('div.gallery_item div.title').data('max_height') < $(this).height()) {$('div.gallery_item div.title').data('max_height', $(this).height());}
		if (i%3 == 2) {
		    $('div.gallery_item div.title').eq(i-2).height($('div.gallery_item div.title').data('max_height'));
		    $('div.gallery_item div.title').eq(i-1).height($('div.gallery_item div.title').data('max_height'));
		    $('div.gallery_item div.title').eq(i-0).height($('div.gallery_item div.title').data('max_height'));
		}
	})
	var z = $('div.gallery_item div.title').length;
	if (z%3 == 2) {
	    $('div.gallery_item div.title').eq(z-2).height($('div.gallery_item div.title').data('max_height'));
	    $('div.gallery_item div.title').eq(z-1).height($('div.gallery_item div.title').data('max_height'));
	}

//	jQuery.fn.fancyzoom.defaultsOptions.imgDir='/templates/jqueryfancyzoom/ressources/';
//	jQuery('a.fancyzoom').fancyzoom(); 
	jQuery('a.fancyzoom').lightBox();

	jQuery("#photos_scroll_box table td:last").css({paddingRight: '0px'});
});
