	jQuery(function(){
		var lists = {content:jQuery('#content'),primary:jQuery('#primary'),secondary:jQuery('#secondary')};
		var data = {key:'',value:0};
		for(var i in lists){
			if(lists[i].height() > data.value){
				data.key = i;
				data.value = lists[i].height();
			}
		}
		jQuery('#container').height(data.value);
		i = '';
		for(i in lists){
			if(i != data.key){
				lists[i].height(data.value);
			}
		}

	    jQuery('#ie6_close').click(function () {
			jQuery('#ie6').slideUp();
		});
	});