$(document).ready(function(){

//Create rollover states for buttons using the button class (i.e. 'a.button', 'a.button span')
$('a.button').hover(
	function () {
		$(this).css({
			"text-decoration"    : 'none',
			"background"   : 'transparent url(/images_2011/redOngrey-input.png) no-repeat top left',
			"color" : '#600'
		});
		$('span', this).css({
			"text-decoration"    : 'none',
			"background"   : 'transparent url(/images_2011/redOngrey-input.png) no-repeat top right',
			"color" : '#600'
		});

	},
	function () {
		$(this).css({
			"text-decoration"    : 'none',
			"background"   : 'transparent url(/images_2011/redOngrey-input.png) no-repeat bottom left',
			"color" : '#FFF'
		});
		$('span', this).css({
			"text-decoration"    : 'none',
			"background"   : 'transparent url(/images_2011/redOngrey-input.png) no-repeat bottom right',
			"color" : '#FFF'
		});
	}
);



});	
