$(document).ready(function () {
	
	resizeCols();
	
	

	

});

$(window).resize(function(){
	
});

$(window).load(function () {
	
	resizeCols();

});


function resizeCols(){
	
	//equal size columns on the home page
	var col1H = $('.col1').height();
	var col2H = $('.col2').height();
	
	if(col1H > col2H){
		$('.col2').height(col1H);
	}else{
		$('.col1').height(col2H);
	}
	
	//equal size content column and right side
	var contentH = $('#HomeContentCol').height();
	var sideH = $('#HomeSideContent').height();
	
	if(contentH > sideH){
		$('#HomeSideContent').height(contentH-7);
	}else{
		$('#HomeContentCol').height(sideH);
	}

}

