var menuover = false;
var currentdetails = 0;
function right_hidedetails() 
{
	var count_data=document.getElementById('count_right').value;
	for( i =0; i<=count_data; i++ ) {
		document.getElementById('con_right'+i).style.display = 'none';
	}
}

function right_details(id) 
{
		right_hidedetails();
		document.getElementById('con_right'+id).style.display = 'inline';
}