document.documentElement.className = 'js';
 
 
 $(document).ready(function() {
							
	
	// start png fix
		
		
			if (typeof document.body.style.maxHeight != "undefined") {
				
		
		} else {
									
			DD_belatedPNG.fix('#logo img, #main_menu a, .intro_top , .intro_middle, .intro_bottom, #content_process .t, #content_process .b,  #steps_nav, .text_modules .t, .text_modules .b');						
			
			
		
		}
		
		// end png fix
		
	function sortNumber(a,b)
	{
	return a - b;
	}	
		
		
	function contentProcess () {
			var cp_m = $('#content_process .m');
			if(!cp_m.length) {return false}
			var arr = [];
			for(i=0; i<cp_m.length; i++) {
				arr.push($(cp_m[i]).height());
			}
			arr = (arr.sort(sortNumber));
			arr = arr[arr.length-1];
			for(i=0; i<cp_m.length; i++) {
				$(cp_m[i]).css('height',arr);
			}
			
			if (typeof document.body.style.maxHeight != "undefined") {
				
		
			} else {
										
				DD_belatedPNG.fix('#content_process .m');						
				
				
			
			}
	}
	
	contentProcess ();
	
	
	function textModules () {
			var cp_m = $('#text_modules .m');
			if(!cp_m.length) {return false}
			var arr = [];
			for(i=0; i<cp_m.length; i++) {
				arr.push($(cp_m[i]).height());
			}
			arr = (arr.sort(sortNumber));
			arr = arr[arr.length-1];
			for(i=0; i<cp_m.length; i++) {
				$(cp_m[i]).css('height',arr);
			}
			
			if (typeof document.body.style.maxHeight != "undefined") {
				
		
			} else {
										
				DD_belatedPNG.fix('.text_modules .m');						
				
				
			
			}
	}
	
	textModules();
		
	
						
							
});

