$(document).ready(function(){
	$('#topm li.mti').hover(
		function() {
			$(this).addClass('hovitem');
			$(this).find('.wsm').css('display', 'block');
		},
		function() {
			$(this).removeClass('hovitem');
			$(this).find('.wsm').css('display', 'none');
		}
	);
});






