$(function() {
	$('.content-block table tr:nth-child(2n-1)').addClass('odd');
	
	$('#gallery a').fancybox({
		titlePosition: 'inside'
	});
	
	$('#navigation li.main').bind('mouseenter', function(e) {
		var sub = $(this).find(' > ul');
		if (!sub.length) return;
		
		var width = sub.width(),
			left = parseInt($(this).position().left + ($(this).width() / 2 - width / 2)),
			max = $('#navigation').width();

		if (left < 0) {
			left = 0;
		}

		if (left + width > max) {
			left = max - width;
		} 
				
		sub.css('left', left + 'px').show();
	}).bind('mouseleave', function() {
		$(this).find(' > ul').hide();
	});
});
