$(document).ready(function(){
	$(".input_button").mouseover(function(){
		$(this).css("color", "#ffffff");
		$(this).css("background", "#fd7400");
	});
	$(".input_button").mouseout(function(){
		$(this).css("color", "#fd7400");
		$(this).css("background", "#ffffff");
	});
});

