$.fn.promoSlide = function(){
	
TOTAL = $(this).find('.promo').length 	
CURRENT = 0;
$(this).find('.promo').css('display','none');	
$($(this).find('.promo')[CURRENT]).css('display','block');
ele = $(this)

next = function(){
	CURRENT = CURRENT +1
	if(CURRENT >= TOTAL){
		CURRENT = 0	
	}
	
}

getNext = function(){
	alert('sdfsd');
	var current = CURRENT
	current = current+1
	if(current >= TOTAL){
		current = 0	
	}
	return current;
	
}
promo_switch2 = function(){
	promo_switch(false)
	
}
promo_switch = function(firstTime){
	
	if(firstTime == true){
		setTimeout('promo_switch2()',9000);
	}else{
		$(ele.find('.promo')[CURRENT]).fadeOut('slow',function(){
			next();	
			$(ele.find('.promo')[CURRENT]).fadeIn('slow',function(){
				setTimeout('promo_switch2()',9000);													  
																  
			})
		})	
		
	}

}	
	
	promo_switch(true)
	
}
