$(function() {
	$(document).ready(function(){
		$('.m').hover(
			function () {
				clickId = $(this).attr('id');
				offsetLeft = $('.m_arrow_b#' + clickId).css('right');
				$('.m_arrow_b#' + clickId).animate({right: "0"}, {queue:false, duration:200}); 
				link = $(this).find('.m_link');
				if (!$(link).hasClass('m_cur')) {
					$(link).css('color', '#fff');
				}
			},
			function () {
				clickId = $(this).attr('id');
				offsetLeft = $('.m_arrow_b#' + clickId).css('right');
				$('.m_arrow_b#' + clickId).animate({right: "155px"}, {queue:false, duration:200}); 
				link = $(this).find('.m_link');
				if (!$(link).hasClass('m_cur')) {
					$(link).css('color', '#000');
				}
			}
		);
    });
});
