$(document).ready
(
	function()
	{
		$('#menu a img.menurollover').each(function()
		{
			var menuName = $(this).attr('src').split('-');
			$.preloadImages('interface/images/menu-'+menuName[1]+'-active.jpg');
		});

		defaultMenuImage = $('#whypun').html();
		$('#menu a img.menurollover').each
		(
			function()
			{
				$(this).hover
				(
					function()
					{//hover in
						$(this).attr('src', $(this).attr('src').split('-inactive').join('-active'));
						var menuName = $(this).attr('src').split('-');
					},
					function()
					{//hover out
						$(this).attr('src', $(this).attr('src').split('-active').join('-inactive'));
					}
				);
			}
		);
	}
);
