$(function() {

		image2 = new Image;
		image2.src = "/images/question2.png";

		$(".menu_el_block").mouseenter(function (){
			var target = $(this).attr("id");

            $('#'+target).css('cursor', 'pointer');
			if ( current_id != target )
			{
				$('#'+target).css('background', '#efece6');
            }

		});

		$('.menu_el_block').mouseleave (function(event) {
           var target = $(this).attr("id");

           if ( current_id != target )
		   {
           		$('#'+target).css('background', '#FFFFFF');
           }

		});

});
