$(function() {
	$('ul').each(function() {
		$(this).find('li:first').addClass('first');	
		$(this).find('li:last').addClass('last');	
	});
	
	$('.navigation li.current_page_item').prevAll().addClass('prev').end().nextAll().addClass('next');
	
	$('.home ul.right a').mouseover(function() {
		$(this).parents('ul.right').css('background-image', "url('" + $(this).attr('_image') + "')");
	}).trigger('mouseover').first().trigger('mouseover');
	
	$('.navigation li').each(function() {
		$(this).addClass($(this).find('a').html().replace(' ', '_').toLowerCase());
	});
	
	var subnav = $('.sub_navigation');
	subnav.find('.current_page_ancestor > ul, .current-menu-item > ul').eq(0).addClass('sub_navigation').insertAfter(subnav);
	subnav.remove();
	
	$(window).resize(function() {
		var windowHeight = $(window).height();
		var bodyTop = $('.body').position().top;
		var footerHeight = $('.footer').height();
	
		$('.body').css('min-height', windowHeight - bodyTop - footerHeight - 64);
	});
	
	$(window).load(function() {
		$(window).trigger('resize');
	});
});
