$(function(){
	$('#header ul.navigation > li').each(function(){
		if($('#header ul.navigation').position()['left']+$(this).position()['left']+$('ul', this).outerWidth(true) > $('#page').outerWidth())
		{
			$('ul', this).css('right', 0);
		}
	});
	$('#header > ul.navigation > li').hover(function(){
		$('ul', this).fadeIn(500);
	}, function(){
		$('ul', this).hide();
	});
});
