$(document).ready(function(){

	$('#logo, #banner').css({'display' : 'none'}).fadeIn(1500);

	$(".photo-gallery img").hover(function(){
		$(this).fadeTo("fast", 0.6);
	},function(){
		$(this).fadeTo("fast", 1.0);
	});
		
	$(".photo-gallery a, .fancybox").fancybox();
	
	$("a.help").fancybox({
		'autoDimensions' : false,
		'padding' : 20,
		'width' : 900,
		'height' : 600
	});

	
 });
