
	jQuery(document).ready(function()
	{
		jQuery("#btn_submit").hover(
		function()
		{
			jQuery(this).css("background-position", "0 -30px");
			jQuery(this).css("color", "#746987");
		},
		function()
		{
			jQuery(this).css("background-position", "0 0");
			jQuery(this).css("color", "#b3aed1");
		}),
		jQuery("#btn_clear").hover(
		function()
		{
			jQuery(this).css("background-position", "0 -90px");
			jQuery(this).css("color", "#746987");
		},
		function()
		{
			jQuery(this).css("background-position", "0 -60px");
			jQuery(this).css("color", "#b3aed1");
		})
	});
