$(document).ready(function(){

	$("#photo_server").click(function(){
		if ($(this).css('height') == '200px')
		{
			$(this).animate({
				height: '569px'
			}, 1000);
			$("#photo_server img").animate({
				top: '0px'
			}, 1000);
		}
		else
		{
			$(this).animate({
				height: '200px'
			}, 1000);
			$("#photo_server img").animate({
				top: '-100px'
			}, 1000);
			
		}
	});

	
	$('#screenshots a').lightBox({fixedNavigation:true}); 
	
});
