
function footer()
{
	var tmp_path = location.pathname;
	var tmp_path_split = tmp_path.split("/");
	
	if(tmp_path_split[1] == "en" ||
	   tmp_path_split[1] == "ennews" ||
	   tmp_path_split[1] == "encollection" ||
	   tmp_path_split[1] == "enimagearchives")
	{
		$("#footer p.latest_news").load("/ennews/latest-news/");
	}else{
		$("#footer p.latest_news").load("/news/latest-news/");
	}
	
	
	$("#footer .twitter").hover(
		function()
		{
			$(this).stop();
			$(this).animate({width:"54px"}, 300);
		},
		function()
		{
			$(this).stop();
			$(this).animate({width:"18px"}, 300);
		}
	);
	
	$("#footer .facebook").hover(
		function()
		{
			$(this).stop();
			$(this).animate({width:"66px"}, 300);
		},
		function()
		{
			$(this).stop();
			$(this).animate({width:"18px"}, 300);
		}
	);
}
