// JavaScript Document

$(document).ready(function(){
	$('ul.menu li').hover(
	  function () {
		$(this).append($('<a>&nbsp;&rarr;</a>'));
	  }, 
	  function () {
		$(this).find('a:last').remove();
	  }
	);
});
