function pageHere(){
	var l=location.href;
	$('#global-navi a').each(function(){
		var h=this.href;
		var f=l.indexOf(h);
		if(document.domain.match(/t\.axel/)){
			var t=h.match(new RegExp(document.domain+'\/emu-spaceart\.co\.jp\/$','ig'));
		}else{
			var t=h.match(new RegExp(document.domain+'\/$','ig'));
		}
		if((l==h)/* || (!t && f!=-1)*/){
			$(this).addClass('here');
		}
	});
	$('#sub-navi a,#foot-navi a').each(function(){
		if(this.href==l){
			$(this).addClass('here');
		}
	});
}


$(document).ready(function(){
	pageHere();
	$("a[rel^='prettyPhoto']").prettyPhoto();
});
