/*<![CDATA[*/
	function $(e){return document.getElementById(e);}
	
	function $h(e){return document.getElementById(e).offsetHeight;}
	
	function resize(){
		var l=0;for(var i=1;i<7;i++){
			if($('sw-innerWrap'+i)!==null && $h('sw-innerWrap'+i)>l){
				l=$h('sw-innerWrap'+i);
			}
		}
		
		var l=Math.ceil(parseInt(l)/25)*25;
		
		for(var j=1;j<7;j++){
			if($('sw-innerWrap'+j)!==null){
				if(j==1){
					$('sw-innerWrap'+j).style.height=(l-53)+'px';
					$('sw-innerWrap'+j).style.minHeight=(l-53)+'px';
				}else{
					$('sw-innerWrap'+j).style.height=l+'px';
					$('sw-innerWrap'+j).style.minHeight=l+'px';
				}
				
			}
		}
	
	}//resize
	
	
	if (window.addEventListener){
		window.addEventListener('load',resize,false);
	}else if (document.addEventListener) {
		document.addEventListener('load',resize,false);
	}else if (window.attachEvent) {
		window.attachEvent('onload',resize);
	}else {//Older browsers only
		if (typeof window.onload=='function') {
			var oldload=window.onload;
			window.onload=function(){
				oldload();
				resize();
			}
		}else{ 
			window.onload=resize;
		}
	}
		   
	   
/*]]>*/
