// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
$(document).ready(function(){
	
	$("#flash").animate( { backgroundColor:"#dbc259" }, 2000 )
				.animate( { backgroundColor:"#ffffff"}, 2000 );
				
	$("input.email_box:last").focus(); 

});


function fadeBackground () {
	$("body").animate( { backgroundColor:"#3ff" }, 10000 )
				.animate( { backgroundColor:"#06c" }, 10000 )
				.animate( { backgroundColor:"#6cf" }, 10000 )
				.animate( { backgroundColor:"#9df" }, 10000 )
				.animate( { backgroundColor:"#fff" }, 10000 )
				.animate( { backgroundColor:"#6cf" }, 10000, fadeBackground() );
}


