// JavaScript Document

jQuery(document).ready(function() {

	$('#top_menu li').hover (
	  function() {
			$(this).addClass('iehover');
		},
		function () {
			$(this).removeClass('iehover');
		}
	);

});
