$(document).ready(function(){
		var colHeight = $('#columnContent').height();
		
		$('#columnTitle').css('min-height','100%');
		$('.contentDiv').css('min-height',colHeight);
		startSize();
		removeFocus();
	});
	

	window.onresize = function(event) {
		checkSize();
	}
	
	function checkSize(){
		windowHight = $(window).height()
		if( windowHight<800){
			$('.groot').slideUp();
		}else{
			$('.groot').slideDown();
		}
	}
	function startSize(){
		windowHight = $(window).height()
		if( windowHight>800){
			$('.groot').show();
		}
	}
	
	function removeFocus(){
		$("a").each(function(){this.onmouseup = this.blur();});
	}

