/*
 * jQuery Background Color Fading Transition
 * Copyright 2010 Advanced Microsystems (www.admics.com)
 * Released under the MIT and GPL licenses.
 */

  $(document).ready(function()
		{
    	$(".fader").hover(
				function()
					{
  					$(this).animate( { backgroundColor: '#E8F0F0' }, 200)
					},
				function()
					{
  					$(this).animate( { backgroundColor: '#FFFFFF' }, 200)
					}
			);
  });

