$(function(){
	$('#map').height($(window).height()).find('.x').draggable();
	$(window).scrollTop((window.location.hash).replace('#', ''));
	$(window).resize(function(){
		$('#map').height($(window).height());
	});
	$('#galleries ol li a').click(function(){
		var alt = ($(this).attr('alt')).split(',');
		var href = $(this).attr('href');
		if($('#gallery').length > 0){
			$('#gallery').fadeOut(250, function(){
				map(alt[0], alt[1], 2000, function(){
					window.location.href = href  + '#' + $(window).scrollTop();
				});			
			});			
		}else{
			map(alt[0], alt[1], 2000, function(){
				window.location.href = href  + '#' + $(window).scrollTop();
			});
		}
		return false;
	});
	$('#navigation .galleries').click(function(){
		var href = $(this).attr('href');
		if($('#gallery').length > 0){
			$('#gallery').fadeOut(250, function(){
				map(1121, 546, 2000, function(){
					window.location.href = href + '#' + $(window).scrollTop();
				});			
			});			
		}else{
			window.location.href =  href + '#' + $(window).scrollTop();
		}
		return false;
	});
});
function map(x, y, d, c){
	$('#map .x').stop().animate({left: -(x-560), top: -(y-335)}, d, 'easeOutQuint', c);		
}
