﻿$(function() {
  $('#top_menu li').hover(
    function(event) {
      if (!$(this).hasClass('selected'))
      {
        $(this).addClass('hover');
      }            
    }, 
    function(event) {
      if (!$(this).hasClass('selected'))
      {
        $(this).removeClass('hover');
      }
    });
  $('#top_menu li a').each(function(n) {
    var location = $(this).attr('href');
    $(this).parent().css('cursor', 'pointer').bind('click', function() {
      window.location.href = location;
    });
  });        
});
