(function(jQuery){
	jQuery.fn.extend({ 
		flash: function(d) {
			return this.each(function() {
				jQuery(this).animate({"opacity":"toggle"},d);
			});
		}
	});	
})(jQuery);

jQuery(document).ready(function(){
	jQuery(".seExclusiveCopy").animate(
		{marginLeft:"10px"},
		675, 
		function() {
			// loop to an even number from 0 to have it end up 'in-view'...
			for(var i = 0; i < 8; i++) { 
				jQuery(".seButton .flash").flash(500);
			}
		}
	);
});