$(document).ready(function(){

	$("div.button").mouseover(function(){
		$(this).animate({backgroundColor:"#688008"}, 200);
		});

	$("div.button").mouseout(function(){
		$(this).animate({backgroundColor:"#87a60b"}, 250);
		});
		
	$("div.writeNew").mouseover(function(){
		$(this).animate({backgroundColor:"#688008"}, 200);
		});

	$("div.writeNew").mouseout(function(){
		$(this).animate({backgroundColor:"#87a60b"}, 250);
		});
		
	$("div.banner").mouseover(function(){
		$(this).animate({backgroundColor:"#222222"}, 200);
		});

	$("div.banner").mouseout(function(){
		$(this).animate({backgroundColor:"#999999"}, 250);
		});
		
	$("div.buttonGray").mouseover(function(){
		$(this).animate({backgroundColor:"#bbbbbb", color:"#ffffff"}, 200);
		});

	$("div.buttonGray").mouseout(function(){
		$(this).animate({backgroundColor:"#FFFFFF", color:"#666666"}, 250);
		});

});