/* Simulate the :hover selector for crap browsers*/

$(document).ready(function(){
	$("#navigation *").hover(
	  function () {
		$(this).addClass('hover');
	  }, 
	  function () {
		$(this).removeClass('hover');
	  }
	);
});

