$(document).ready(function() {
   preload(['item_1_hover.png',
	'item_2_hover.png',
	'item_3_hover.png',
	'item_4_hover.png',
	'item_5_hover.png']);

   $("#menu li a img").hover(function() { 
      if($(this).attr("src").match(/_selected.png$/)) {
        return;
      } else {
        $(this).attr("src", $(this).attr("src").split(".").join("_hover."));
      }
	}, function() {
      if($(this).attr("src").match(/_selected.png$/)) {
        return;
      } else {
        $(this).attr("src", $(this).attr("src").split("_hover.").join("."));
      }
	});

  $('.menu li').mouseover(function() {
    var li = $(this);
    var href = li.children('a').attr('href');

    $(li).click(function() {
      document.location = href;
    });
  });
});
