(function($) {
	$.fn.arrowMenu = function() {
		this.each(function() {
			var _mo = false;
			var _ivid = -1;
			var _el = $(this).children(":first").children(":first");
			var _spn = _el.children(":last");
			var _arw = _el.children(":first").children(":first");
			var mouseOut = function() {
				if (!_mo) {
					_arw.stop().animate( {
						marginLeft : -24
					}, 140);
					_spn.stop().animate( {
						color : "#000"
					}, 140);
				}
			}
			_el.bind("mouseover", function() {
				if (!_mo) {
					_mo = true;
					_arw.stop().animate( {
						marginLeft : 0
					}, 140);
					_spn.stop().animate( {
						color : "#de2e53"
					}, 140);
				}
			});
			_el.bind("mouseout", function() {
				_mo = false;
				clearTimeout(_ivid);
				_ivid = setTimeout(mouseOut, 100);
			})

		});
		return this;
	};
})(jQuery);
