var t = [];
$(function(){
	$('#top img').each(function(){var x=$(this).parent().parent().index();t[x] = new Image();t[x].src=this.src.replace(/\.gif$/, '2.gif');});
	$('#top a').hover(function(){var x = $(this).parent().index();$(this).children('img').attr('src', t[x].src)}, function(){var x = $(this).parent().index();$(this).children('img').attr('src', t[x].src.replace(/2\.gif$/, '.gif'));})
	$('#top > ul > li > div').each(function(){var d=$(this);$(this).parent().hover(function(){d.slideDown(200);},function(){d.slideUp(200);})})
})
