/*
Simulate :hover pseudo class for browsers that don't support it
Simply add a "hover" class on mouse over
*/
$(document).ready(function(){
	$("#header ul li").hover(
	  function () {
		$(this).addClass('hover');
	  }, 
	  function () {
		$(this).removeClass('hover');
	  }
	);
});

