$(document).ready(function(){
	var path = document.location.pathname;		
	if ( path.charAt(path.length-1) != '/' ) path = path+'/';
	var epos = document.location.pathname.indexOf('/',1) == -1 ? document.location.pathname.length : document.location.pathname.indexOf('/',1)-1;
	var section = document.location.pathname.substr(1, epos );
	
	try {
		document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
	
	$("#topButtons a[href='/"+section+"/']").addClass("active");
	$("#leftMenu a[href='"+path+"']").addClass("active");
	
	$("#map area").hover(
	function(){
		var i = $("#map area").index($(this));
		$("#menu p:eq(" +i+ ") a").addClass('active');
	},
	function(){
		var i = $("#map area").index($(this));
		$("#menu p:eq(" +i+ ") a").removeClass('active');
	});
	
	$("#fotoNavi a:first").addClass('active');
	if($("#fotoCont a").length < 5) {
		$("#fotoNavi").animate({marginTop : '-342px'}, 300);
	}
	else if($("#fotoCont a").length < 9) {
		$("#fotoNavi").animate({marginTop : '-161px'}, 300);
	}
	
	$("#fotoNavi a").click(
	function(){
		var i = $("#fotoNavi a").index($(this)) * 648;
		//alert(i);
		$("#fotoCont").animate({marginLeft : '-' + i + 'px'}, 500);
		$("#fotoNavi a").removeClass('active');
		$(this).addClass('active');
	});
	
	
	
	
	/* 
	
	$("#mainButtons a[href='"+path+"']").addClass("active");
	$("#mainTitle h1").addClass(section);
	 */
	
	
});
