$(window).load(function() {
	var flag ='';
	$('#gallerybtn a').click(function(){
		var link = $(this).attr('title');
		if(link){
  		$('.gallery-item').hide();
		$(link).fadeIn();
		var reltext = link.replace( /^./, '' ) || 'blank';
		$(link).children().children().attr("rel",reltext);
		flag ='on';
		}
	});
	$(window).hashchange(function() {
		var hash = location.hash;
		if(hash && !flag){
		var link2 = hash.replace( /^#/, '.' ) || 'blank';
		var reltext = hash.replace( /^#/, '' ) || 'blank';
  		$('.gallery-item').fadeOut();
		$(link2).fadeIn();
		$(link2).children().children().attr("rel",reltext);
		}
	});
	$(window).hashchange();
			$(".gallery-item a").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
});
