// JavaScript Document
$(document).ready(function(){
$isIE6 = false;
if ($.browser.msie && $.browser.version.substr(0,1)<7) {
$isIE6 = true;
}
$('body').removeClass('noJS');
$footerHeight = $(window).height() - $('#footer').position().top;
if (!$.browser.msie)
{
$('#footer').css({'minHeight':$footerHeight});
}
$('#nav li a').hover(function()
{
$(this).fadeTo('fast',0.5);
},
function()
{
$(this).fadeTo('fast',1);
});
$('#logo').hover(function()
{
$(this).fadeTo('fast',0.7);
},
function()
{
$(this).fadeTo('fast',1);
});

});
