function updateMenuPosition() {
	var pos = $("#contentContMain").offset();  
	$("#contentContMenu").css( { "width": (pos.left - 17) + "px" } );
	$("#contentContMenu").show();
}

$(document).ready(function(){
	if ($.browser.msie) {
	    var height = $('#contentContMenu').height();
		$('#contentContMain').css('min-height', (height + 20) + "px");
	 }
	 else
	 {
	 	$('#contentContMain').css('min-height', $('#contentContMenu').css('height'));
	 }
	updateMenuPosition();
});
$(window).resize(function() {
	updateMenuPosition();
});