 $(document).ready(
			function(){
				header_stanga_time 	= header_stanga_time 	* 1000;
				header_centru_time 	= header_centru_time 	* 1000;
				header_dreapta_time = header_dreapta_time 	* 1000;
				
				if(header_animationtype != 'fade' && header_animationtype != 'slide')
					header_animationtype = 'fade';
				
				if(header_animationtype == 'slide')
					speed = 10;
				else
					speed = 2000;
					
				$('.fade_slide_stanga').innerfade({
					animationtype: header_animationtype,					
					speed: speed,
					timeout: header_stanga_time,
					type: 'sequence',
					containerheight: '215px'					
				});		
				
				$('.fade_slide_centru').innerfade({
					animationtype: header_animationtype,							  						
					speed: speed,
					timeout: header_centru_time,
					type: 'sequence',
					containerheight: '215px'					
				});		
				
				$('.fade_slide_dreapta').innerfade({
				    animationtype: header_animationtype,	
					speed: speed,
					timeout: header_dreapta_time,
					type: 'sequence',
					containerheight: '215px'					
				});		
		});
