$(function(){

  var site_url = 'http://www.hamashun.com/';

  var window_height = $(window).height();
  if (window_height < '666') {
    $('body').attr('class', 'miniWindow')
  }


  function all_contents_hide(){
    $('#me, #mylinks, #works, #links, #contact').hide('fast');
  }
  $('#mylinks, #works, #links, #contact').hide();
  $('#globalNav a').click(function(){
    document.location.href = site_url + $(this).attr('href');
	  var show_contents = $(this).attr('href');
    all_contents_hide();
    $(show_contents).fadeIn('fast');
    return false;
  });

  var opened_url = document.location.href;
  switch(opened_url) {
    case site_url + '#mylinks' :
      all_contents_hide();
		  $('#mylinks').fadeIn();
    break;
    
    case site_url + '#works' :
      all_contents_hide();
		  $('#works').fadeIn();
    break;
    
    case site_url + '#links' :
      all_contents_hide();
		  $('#links').fadeIn();
    break;
    
    case site_url + '#contact' :
      all_contents_hide();
		  $('#contact').fadeIn();
    break;
    
    default :
      all_contents_hide();
		  $('#me').fadeIn();
  }


});
