$('body').removeClass('nojs').addClass('jsok');
$(document).ready(function() {
  
  if ($.fancybox) 
    $("div#text a[href]:has(img)").filter(function(){ return (!/[:#]/.test($(this).attr('href'))) }).fancybox();
 
  /*if (window.location.hash && !window.location.hash.match(/#picture/ig)) {
      $.get(window.location.hash.substr(1));
  }*/
    
  $(window).bind('popstate', function(event) {
    var state = event.originalEvent.state;
    if (state && state.url) {
        $.get(state.url,{ 'nostate':true });
    }
  });
  
  $(".portfolioMenuList a").parent().has('ul').hover(function(){                    
    $(this).find('.level2').show();
  },function(){
    $(this).find('.level2').hide();
  });

      
    
});

