$(document).ready(function() {
	$(".homebox").hover(function(){
		$(this).children(".go").children("a").css({ "color" : "#fff" }),
		$(this).children(".go").stop().animate({fontSize: "200%"},600);
	}, function(){
		$(this).children(".go").children("a").css({ "color" : "#fff" }),
		$(this).children(".go").stop().animate({fontSize: "130%"},600);
	});
	
	$("#test").click(function(){
		window.location = "/Test/";
	});
	$("#training").click(function(){
		window.location = "/Training/";
	});
	$("#apply").click(function(){
		window.location = "/Apply/";
	});
});