$('document').ready(function(){ var ie6 = (typeof document.body.style.maxHeight == "undefined"); if($('#flashMessage').is('*')) { showHider(); showFlash(); $.scrollTo($.cookie('scrollOffset')); } $('.submitLoader').each(function(){ $(this).click(function(){ showHider(); showLoader(); }) }); $('#menu ul li').each(function(){ $(this).bind("mouseenter", function(){ $(this).find('> ul').show(); }); $(this).bind("mouseleave", function(){ $(this).find('> ul').hide(); }); }); if(ie6 == false) { $('input:image, input:submit').each(function(){ $(this).click(function(){ var scrollOffset = $(window).scrollTop(); $.cookie('scrollOffset', scrollOffset, { path: '/', expires: 10 }); }) }); } }); function hideAll() { $('#flashMessage').hide(); $('#hider').hide(); $('#loader').hide(); } function showHider(){ $('#hider').show(); $('#hider').css({ 'width' : $(window).width() + 'px', 'height' : $(window).height() + 'px', 'background' : "gray", 'position' :'fixed', 'top' : 0, 'left' : 0, 'z-index' : 2000, 'opacity' : 0.4 }); window.onresize = function(){ $('#hider').css({ 'width' : $(window).width() + 'px', 'height' : $(window).height() + 'px' })}; } function showLoader() { $('#loader').css({ 'display' : 'block', 'z-index' : 3000 }); } function showFlash() { $('#flashMessage').css({ 'position' : 'fixed', 'top' : ($(window).height()/2) - ($('#flashMessage').height()/2) + 'px', 'opacity' : 1.0, 'z-index' : 3000 }); $('#flashMessage').fadeIn("fast"); }