$(document).ready(function(){
	
	var baseUrl = 'http://www.michaelsenglishschool.jp';
	
	$('#splash .menu li:not(.current_page_item, .current_page_parent) a').mouseover(function(){
		$(this).animate({
			color: '#fff'
		}, 'fast');
	}).mouseout(function(){
		$(this).animate({
			color: '#000'
		}, 'fast');
	});
	
	$('#content a').each(function(){
		var href = $(this).attr('href');
		
		if (href.match(/\bhttp(s)?:\/\/(?!www\.michaelsenglishschool\.jp)/))
		{
			$(this).click(function(e){
				e.preventDefault();
				window.open(href);
			});
		}
	});
		
});