<!--
 
 
function posJ(){

    var l = $(document).width() / 2 - $('#header img:first').width() / 2 - $('#jrnl').width() / 2 - 40;
    var t = $('#header img:first').height() - $('#jrnl').height() / 2 + 20;
    
    $('#jrnl').css('left', l+'px' ).css('top', t+'px' ).fadeIn('fast');
}

 $(document).ready(function() {
 
   $('#jrnl').supersleight();
   
   $('#jrnl img').hover(
   
      function () {
        $(this).attr('src','inc/img/journal-hover.png');
        $(this).supersleight();
      }, 
      
      function () {
        $(this).attr('src','inc/img/journal.png');
        $(this).supersleight();
      }
      
    );
  
    //posJ();
   
 });

$(window).load( posJ );
$(window).resize( posJ );
 
//-->