$(document).ready(function() {
	$(".button.grey").each(function() {
		if(!$(this).hasClass("selected")) {
			$(this).hover(function() {
				$(".inner .button_link", this).css("color", "#3f3f3f");
			}, function() {
				$(".inner .button_link", this).css("color", "#b5b5b5");
			});
		}
	});
});