/*
if (location.hash){
  $('<style type="text/css">.primaryContent { display: none; }</style>').appendTo('head');
}
*/
$(function(){
/*
  if (location.hash != ""){
    var loadUrl = location.hash.replace('#','');
    $('.primaryContent').load(loadUrl + ' .primaryContentInner', function(){
      $(this).show();
    });
  }

  $('a:not([href^="http://"]):not([href$="rss-20.aspx"])').live('click',function(){
    $('.primaryContent').load($(this).attr('href') + ' .primaryContentInner');
    location.href = '#'+ $(this).attr('href');
    return false;
  });
*/
});