include('/js/photo_gadget.js');
include('/js/thickbox.js');
//include('/js/board.js');

$(function(){
  
  var $main_contents = $('#main_contents');
  
  if(!jQuery.browser['msie']){
    $(window).load(function(){
      $main_contents.hide().fadeIn('slow');
    });
    $(window).unload(function(){
      $main_contents.fadeOut('slow');
    });
  }
  
});
