$(function(){
    bodyheight = $('body').height();
    $('#inner').css('height', bodyheight);
});

$(function(){

   $('a[name=fancy-folder]').fancybox( {
            frameWidth: 1000,
            frameHeight: 560,
            overlayShow: true,
            centerOnScroll: true,
            hideOnContentClick: false
   }

   );
       
});

$(document).ready(function(){
    $(window).scroll(positionMenu);
});

var positionMenu = function () {
    y       = $(this).scrollTop();
    menu    = $('#header');
    line    = $('#greenline');
    
    menu.css('margin-top', y+'px');
    line.css('margin-top', y+'px');

}