// $Id$

$(document).ready(function() {
  if (!$.browser.msie) {
    th_globus_front_background($('#first-page .head map area, #first-page .body'));
    th_globus_front_background($('#second-page .head map area, #second-page .body'));
    th_globus_front_background($('#third-page .head map area, #third-page .body'));
  }
  else {
    th_globus_front_background($('#first-page .front-block-inner'));
    th_globus_front_background($('#second-page .front-block-inner'));
    th_globus_front_background($('#third-page .front-block-inner'));
  }
  
})


function th_globus_front_background(element) {
  element.hover(function(){
    $('body').removeClass('first-page second-page third-page').addClass($(this).parents('.front-block').attr('id'));
  },function(){
    $('body').removeClass('first-page second-page third-page');
  });
}
