function clickPropMenu(id){
	if($('#' + id).css('display') == 'none')
	{
		$('#' + id).css({'display': 'block'});
	}
	else
	{
		$('#' + id).css({'display': 'none'});
	}
}

function visPropMenu(link,id){
	$('#' + id).css({'display': 'block'});
	if(link)
	{
		var minWidth = $('#' + link).width() + 50;
		$('#' + id + ' a').each(function(){
			if($(this).width() + 50 > minWidth)
			{
				minWidth = $(this).width() + 50;
			}
		});
		if($('#' + id).width() < minWidth)
		{
			$('#' + id).width(minWidth);
		}
	}
}

function hidePropMenu(id){
	$('#' + id).css({'display': 'none'});
}

