$(function(){
	$('#bgphotos_outer img').animate({"opacity": 0.4});
	
	$('#bgphotos_outer a').hover(function(){
		$(this).children('img').animate({"opacity": 0.8});
	}, function(){
		$(this).children('img').animate({"opacity": 0.4});
	});
	
	$('#bgphotos_outer a').lightBox();
	
	$(".moveableContainer").draggable();
	
	$('#topbarTab').click(function(){
		if($(this).hasClass('closed')){
			$('#content > div').slideDown(1000);
			$(this).text("Hide Navigation").removeClass('closed');
		} else {
			$('#content > div').slideUp(1000);
			$(this).text("Show Navigation").addClass('closed');
		}
		return false;
	});
	
	$('#closeMoveableBox').click(function(){
		$('#galleryDescription').fadeOut(800);
		return false;
	});
	
	var wHeight = $('#wrapper').innerHeight();
	$('#footer').css('margin-top', (wHeight + 20));	
});