$(document).ready(function() {
						   
	var s;

  $('.eee').mouseover(function() {
    s = $(this).css('background-image');
	$(this).css('background-image', 'url(/bg_sub_menu_pasive_2.jpg)');
		
  })
  
  $('.eee').mouseout(function() {
  	$(this).css('background-image', s);
  })
  
})
