/*!
 * jquery.flash.js
 */

/**
 * Flash plugin (causes an element to whseFlash its background)
 */
(function($) {
	var defaults = {
		apexColor: '#10306e',
		returnColor: null
	};

	$.fn.flash = function(options) {
		var settings = $.extend(true, {}, defaults, options);
		var returnColor = (settings.returnColor) ? settings.returnColor : $(this).css('backgroundColor');
		$(this).animate({ backgroundColor: settings.apexColor }, function() { $(this).animate({ backgroundColor: returnColor }) });
	};
})(jQuery);

