
	queue(function()
	{
		var content	= document.getElementById('content') ;
		var ad_slot2	= document.getElementById('ad_slot2') ;
		
		if(!content || !ad_slot2){
			return ;
		
		}
		
		var height1	= parseInt(content.offsetHeight) ;
		var height2	= parseInt(ad_slot2.offsetHeight) ;
		
		if(height2 > height1) 
		{
			height1 = height2 ;
			content.style.height = (height2 - 6) +'px' ;
		}
		
		return ;
		
	}) ;
