$(document).ready(function()
{
	//fix IE bug
	if ($.browser.msie && $.browser.version <= 6)
	{
		$('div.top ul.menu li a, div.footer a.sun').hover(
			function(){
				$(this).children('img').hide();
				$(this).children('img.active').show();
			},
			function(){
				$(this).children('img').show();
				$(this).children('img.active').hide();
			}
		);
	}

	// preload images
	images = [];
	$('div.top ul.menu li a img.active, div.footer a.sun img.active').each(function(){
		images[images.push(new Image()) - 1].src = $(this).attr('src');
	});

});
