$(document).ready(function () {
	$('.pmenu li').hover(function (e) {
		$(this).addClass('hover');
		if (jQuery.browser.msie) {
			$(this).find('~ li').css('z-index', '-1');
		}
	}, function (e) {
		$(this).removeClass('hover');
		if (jQuery.browser.msie) {
			$(this).find('~ li').css('z-index', '0');
		}
	});
});