$(document).ready(function() {

	// Flash and fadeout flash messages
	$("#flash.error").animate( { backgroundColor: 'red' }, 2000).animate( { backgroundColor: 'transparent' }, 2000).fadeOut('fast');
	$("#flash.notice").animate( { backgroundColor: 'green' }, 2000).animate( { backgroundColor: 'transparent' }, 2000).fadeOut('fast');
	
});