/* match menu height to content height */ 
$(document).ready(function(){
	m = $('#menu').height();
	c = $('#content').height();
	if(c>m){
		$('#menu').height(c);
	}
});
