var hide_timer_new;
function viewAllShow_new ()
{
	document.getElementById('dropDown').style.display = 'inline';	
	stopHide_new();
}
function startHide_new ()
{
	hide_timer_new = setTimeout("viewAllHide_new()", 200);
}
function stopHide_new ()
{
	clearTimeout(hide_timer_new);
}
function viewAllHide_new ()
{
	document.getElementById('dropDown').style.display = 'none';
}