$.fn.jFlash=function(period){
	
	$.fn.flashIn=function(){
		$(this).fadeIn(period,function(){
			called = $(this);
			timer2 = setTimeout('called.flashOut();',period);
		});
	};
	
	$.fn.flashOut=function(){
		$(this).fadeOut(period,function(){
			called = $(this);
			timer3 = setTimeout('called.flashIn();',period);
		});
	};
	
	
	called = $(this);
	timer = setTimeout('called.flashOut();',period);

};