// JavaScript Document

$(document).ready(function() {
  $('.subMenu a')
.css( {backgroundColor: "#21294c"} )
.mouseover(function(){
		$(this).stop().animate(
			{backgroundColor:"#d00000"}, 
			{duration:200})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundColor:"#21294c"}, 
			{duration:700})
		})
 });