<!--
if (top != self) {
	top.location.href = location.href
}
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}
var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		meet_on = newImage("images/link_meet_on.gif");
		about_on = newImage("images/link_about_on.gif");
		services_on = newImage("images/link_services_on.gif");
		sub_preventive_on = newImage("images/link_preventive_on.gif");
		sub_rehabilitative_on = newImage("images/link_sub_rehabilitative_on.gif");
		sub_sedation_on = newImage("images/link_sub_sedation_on.gif");
		sub_massage_therapy_on = newImage("images/link_sub_massage_therapy_on.gif");
		nutrition_on = newImage("images/link_nutrition_on.gif");
		sub_anti_aging_on = newImage("images/link_sub_anti_aging_on.gif");
		sub_detoxification_on = newImage("images/link_sub_detoxification_on.gif");
		sub_weight_loss_on = newImage("images/link_sub_weight_loss_on.gif");
		resources_on = newImage("images/link_resources_on.gif");
		sub_links_on = newImage("images/link_sub_links_on.gif");
		sub_glossary_on = newImage("images/link_sub_glossary_on.gif");
		sub_articles_on = newImage("images/link_sub_articles_on.gif");
		contact_on = newImage("images/link_contact_on.gif");
		home_on = newImage("images/link_home_on.gif");
		preventive_on = newImage("images/link_preventive_on.gif");
		rehabilitative_on = newImage("images/link_rehabilitative_on.gif");
		sedation_on = newImage("images/link_sedation_on.gif");
		massage_therapy_on = newImage("images/link_massage_therapy_on.gif");
		preloadFlag = true;
	}
}

function changeImages( m, image) {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
	showDropdownMenu( m );
}
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

var curMenu
curMenu = ''

function showDropdownMenu( m )
{
	if( document.getElementById )
	{
		hideDropdownMenu( curMenu );
		e = document.getElementById( "menu" + m )
		if( e != null )
		{
			e.style.visibility = "visible"
			e.style.zindex= 100

			curMenu = m
		}		
	}
}
function hideDropdownMenu( m )
{
	e = document.getElementById( "menu" + m )
	if( e != null )
	{
		e.style.visibility = "hidden"
		e.style.zindex= 0
	}		
}
function dropdownMenuMover( m )
{
	e = document.getElementById( "menuCell" + m )
	if( e != null )
	{
		e.bgColor = "#D0D0D0"
	}		
}
function dropdownMenuMout( m )
{
	e = document.getElementById( "menuCell" + m )
	if( e != null )
	{
		e.bgColor = "#EFEFEF"
	}
}
function reportMouseMove()
{
	if( curMenu != "" )
	{
		e = document.getElementById( "menu" + curMenu )
		if( e != null )
		{
			y = window.event.y;
			if( y < 60 || y > 100 )
				hideDropdownMenu( curMenu );
		}
	}
}
// End of script -->