//<![CDATA[ 

//jQuery scripting
$(function() {
    
    //Nav opacity
    $('#nav img').animate({
    	"opacity" : 0
    });
    //VisNav opacity
    $('#visnav img').animate({
    	"opacity" : 0
    });
    //FooterNav opacity
    $('#footernav img').animate({
    	"opacity" : 0
    });
    
    //Nav hover functions
    $('#nav img').hover(function() {
    	$(this).stop().animate({ "opacity" : 1 });
    }, function() {
    	$(this).stop().animate({ "opacity" : 0 });
    });
    
    //VisNav hover functions
    $('#visnav img').hover(function() {
    	$(this).stop().animate({ "opacity" : 1 });
    }, function() {
    	$(this).stop().animate({ "opacity" : 0 });
    });
    
    //FooterNav hover functions
    $('#footernav img').hover(function() {
    	$(this).stop().animate({ "opacity" : 1 });
    }, function() {
    	$(this).stop().animate({ "opacity" : 0 });
    });
    
    //Lightbox functions
    //$('.lightbox').lightbox({fitToScreen: true});
    
});

//]]>