$(document).ready(function(){	
	$('img[usemap]').maphilight({
           stroke: false
       });

	$(".fancybox").fancybox({
	    	openEffect	: 'elastic',
	    	closeEffect	: 'elastic',

	    	helpers : {
	    		title : {
	    			type : 'inside'
	    		}
		}
    	});
	$('#content h2').first().css({'margin-top': '0px'});
	$('#content h3').first().css({'margin-top': '0px'});

	$('a[href^="#"]').each(function() {
		var thissrc = $(this).attr('href');
		var pathname = window.location.pathname;
		$(this).attr('href', pathname + thissrc);
	});
});

