	$(document).ready(function()	{				   
		//French Rollover
		$(".french").hover(
			function () {$('#frenchInfo').fadeIn(400);}, 
			function () {$('#frenchInfo').fadeOut(400);}
		);
		
		//Italian Rollover
		$(".italian").hover(
		  function () {$('#italianInfo').fadeIn(400);}, 
		  function () {$('#italianInfo').fadeOut(400);}
		);
	});

	//Navigation: Home
	function navHomeOver()	{document.getElementById('navHome').src="../images/en/nav/home_over.gif";};
	function navHomeOut()	{document.getElementById('navHome').src="../images/en/nav/home.gif";};
	
	//Navigation: Turn The Page
	function navTurnOver()	{document.getElementById('navTurn').src="../images/en/nav/turnThePage_over.gif";};
	function navTurnOut()	{document.getElementById('navTurn').src="../images/en/nav/turnThePage.gif";};
	
	//Navigation: Contact
	function navContactOver()	{document.getElementById('navContact').src="../images/en/nav/contact_over.gif";};
	function navContactOut()	{document.getElementById('navContact').src="../images/en/nav/contact.gif";};