function showSubMenu(el) {
	document.getElementById(el).style.visibility = 'visible';
}
function hideSubMenu(el) {
	document.getElementById(el).style.visibility = 'hidden';
}

$(function()
	{
		$('.content').jScrollPane({scrollbarWidth: 11,scrollbarMargin:15,dragMaxHeight:74});
	});
function showContent() {
	document.getElementById('content').style.visibility = 'visible';
	document.getElementById('jScrollPaneContainer').style.visibility = 'visible';
	
}
