/**
 * @author Vlad
 */

$(document).ready(function() {
	var h = $("#main").height() - 310;
	
	if(h>0)
$("#menu").height($("#main").height() - 310);

if($("#menu").height()<500)
{
	$("#menu").height(500);
}

});