$(document).ready(function(){
  $('.box_white').hover(function(el) {$(this).css('backgroundColor', '#82D4A4')}, function(el) {$(this).css('backgroundColor', '#fff')});
  if ($('#submenu a.selected').length) {
    position_top = $('#submenu a.selected').position()['top'];
    $('#main').append(
      '<img src="/images/menu_selected.gif" alt="" style="position:absolute; top:'+position_top+'px; left:604px; z-index:1000;">'
    );
  }
});
