$(function() {
	//
	$("a").hover(function() {
				$(this).css("textDecoration", "underline");
				$(this).css("color", "green");
			}, function() {
				$(this).css("textDecoration", "none");
				$(this).css("color", "");
			});
	//
	$("#guiderButton  a").hover(function() {
				$(this).css("textDecoration", "underline");
				$(this).css("color", "yellow");
			}, function() {
				$(this).css("textDecoration", "none");
				$(this).css("color", "white");
			});
	//
});