$(document).ready(function() {
	if($.browser.msie) {
		/* nothing */
	}
	else {
		$(".left_menu > ul > li").hover(
		  function () {
			$(this).prepend($('<i class="meh"></i>'));
		}, 
		  function () {
			$(this).find('i').remove();
		  }
		)
	}
});

// Usage:

preload([
    'img/left_menu_hover.png',
    'img/leftmenu_hover.png'
]);

