/**
 * @author dev2
 */
function initOverSound(selector, file) {
  if($.browser.msie) {
    $('head').append('<bgsound id="sound" loop="1"/>');
  } else {
    $('body').append('<audio SRC="'+file+'" autobuffer="true" id="sound"></audio>');
  }
  $(selector).mouseover(function(){
    if($.browser.msie) {
      $('#sound').attr({src: file});
    } else {
      var sound = document.getElementById('sound');
      if(sound.play)
        sound.play();
    }
  })
}

