$(document).ready(function() {
	var s = "";
	var i = "";
	
	if ( window.location.search != "" ){
		s = window.location.search;
		q = s.substring("3", s.length);
		$('#maincontent').removeHighlight().highlight(q);
	}
	//$('a').click(function(){
		if ( window.location.hash != "" ){
			h = window.location.hash;
			i = h.substring( "1", h.length );
			$('#'+i).addClass('id_highlight');
		}
	//});

	$("a.fancy").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 + '</span>';
		}
	});
});
