jQuery(document).ready(function($) {
    
	// Fade out box
	$('#top').css('opacity', 0.2);
	$('.thumb').css('opacity', 0.4);
	
	$("#top").mouseenter(function() {
		$(this).stop(true,true).animate({opacity: 0.8}, 400);
	}).mouseleave(function() {
		$(this).stop(true,true).animate({opacity: 0.2}, 400);
	});
	
	$(".thumb").mouseenter(function() {
		$(this).stop(true,true).animate({opacity: 0.8}, 400);
	}).mouseleave(function() {
		$(this).stop(true,true).animate({opacity: 0.4}, 400);
	});
	
}); 

function close_gallery(){
	$("#gallery").fadeOut(500);
}
