jQuery(document).ready(function() {
	jQuery('#header .sitemap li, #footer .sitemap li').not('.current, .ancestor-current').hover(function() {
		var li = jQuery(this);
		li.addClass('hover');
		li.parent('.sitemap').find('.ancestor-current, .current').find('ul').hide();
	},function() {
		var li = jQuery(this);
		li.removeClass('hover');
		li.parent('.sitemap').find('.ancestor-current, .current').find('ul').show();
	});
		
	var bg = jQuery('#title').css('background-image');
	jQuery('#main .sitemap li').hover(function(){		
		if(jQuery('a',this).attr('rel')){
			jQuery('#title').css({
				'background-image' : 'url('+jQuery('a',this).attr('rel')+')'
			});			
		}
	}, function(){
		jQuery('#title').css({
			'background-image' : bg
		});
	});
});


