mainstart = function() {
	$(".switcher").hover(function(){$(this).addClass("hover")},function(){$(this).removeClass("hover")}).click(function() {
		window.location.href = $("a",this).attr("href");
	});
}