$(function() {
	$('.slide-map .tab_content').hide().eq(0).show();
	$('div.slide-map ul.tabs li:first').addClass('active').show();
	$('ul.tabs li').click(ahahaha);
	if( location.pathname.length < 3 ) {
		$( 'ul.tabs li' ).bind( 'mouseover', ahahaha );
	}
});
var flag = false;
function ahahaha(e){
	if(flag){
		return;
	}
	flag = true;
	e=e.currentTarget;
	$('ul.tabs li').removeClass('active');
	$(e).addClass('active');
	$('.tab_content').hide();
	$( $(e).find('a').attr('href') ).fadeIn(400, function() {
		flag = false;
	});
	return false;
}
