$(document).ready(function(){
	$(function(){
  //If browser is IE, disable BackgroundImageCache
  if (jQuery.browser.msie)
  {
    try
    {
      document.execCommand(
        "BackgroundImageCache",
        false, 
        true);
    } catch(err){}
  }
});  


  $("#header_menu ul li a span").hover(
    function () {
      $('ul', this).show(),
      $(this).attr("class" , "hover");
    },
    function () {
      $('ul', this).hide(),
      $(this).attr("class" , "");
    }
  );
  
});

