$(document).ready(function(){
	var h = $(".mainCon").height();
	var m = $(".menu").height();
	if(m<h){
		$(".menu .con").height(h-60);
	}
})
