var globalErr 			= 1;  // Contact Form Validation 
jQuery(document).ready(function() 
{
	
	// set heights for Left menu 
//	if (jQuery("#left_menu").attr("class")=="left_menu")
//	{
////		document.getElementById('content').style.marginLeft = 184+"px";
//	}
	// End of Left menu Height 	
	//for scroll bar
		
		
	
		
});

// Show div
function showform(id)
{
	document.getElementById(id).style.display="block";
}

// Hide Div
function hideform(id)
{
	document.getElementById(id).style.display="none";
}



