$(document).ready(function(){
	 // Bind a custom fadeToggle event
	$(".flashing").bind("fadeToggle", function() {
		// Call the fading toggle animation
		$(this).fadeToggle("slow", function() {
			// Trigger another fadeToggle event to recurse the animation
			$(this).trigger("fadeToggle");
		});
	}).trigger("fadeToggle"); // Fire the initial event to start the chain
 });
