jQuery(document).ready(
		
	function(){
		
		var current_url = document.location.toString();
		if (current_url.match('#')) { // the URL contains an anchor
		// click the navigation item corresponding to the anchor
			$.getJSON('/get_current_logo_lt.php?q=' + current_url.split('#')[1], function(current_logo) {
				$('#current_logo_img2').html('<span></span>' + current_logo.img);
				$('#current_logo_desc').html(current_logo.description);
				$('a.fancybox_item').click(function() {
					document.location='/#zoom';
				});
				$('a.fancybox_item').fancybox({
					'hideOnContentClick': true,
					'overlayOpacity' : 1,
					'overlayColor' : '#fff',
					'showCloseButton' : false,
					'padding' : 0
				});
			});
		}
		$('.logo_item').click(function() {
			document.location='/#' + $(this).attr('rel');
			$.getJSON('/get_current_logo_lt.php?q=' + $(this).attr('rel'), function(current_logo) {
				$('#current_logo_img2').html('<span></span>' + current_logo.img);
				$('#current_logo_desc').html(current_logo.description);
				$('a.fancybox_item').click(function() {
					document.location='/#zoom';
				});
				$('a.fancybox_item').fancybox({
					'hideOnContentClick': true,
					'overlayOpacity' : 1,
					'overlayColor' : '#fff',
					'showCloseButton' : false,
					'padding' : 0
				});
			});
		});
	}

);
