// JavaScript Document

// NAV

$(document).ready(function() {
	$("#header ul li").css({ opacity: 0 });
});

$(document).ready(function(){
	$("#header ul li").hover(
	function() {
		$(this).stop().animate({"opacity": "1"}, 40);
	},
	function() {
		$(this).stop().animate({"opacity": "0"}, 400);
	});
});

// PANELS

$(document).ready(function(){
	$("#panels li").hover(
	function() {
		$(this).stop().animate({"opacity": "0.7"}, 40);
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, 400);
	});
});

// BIG PIC

$(document).ready( function() {
	$('#bigpic').innerfade({
		speed: 1500,
		timeout: 5000,
		type: 'random_start',
		containerheight: '316px'
	});
});

// LIGHTBOX

$(function() {
	$('div.gallery a').lightBox();
});
