// JavaScript Document

$.noConflict();

jQuery(document).ready(function() {
	jQuery("#nav li").css({ opacity: 0 });
});

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

jQuery(document).ready(function() {
	jQuery('a.lightbox').lightBox();
});
