// JavaScript Document

/**
 * Starts the lava lamp navigatoin
 * @param ULid string The id of the UL wrapping lava lamp list items
 * @param curId string The id of the LI element that should be set to current
 * @return
 */
function onload_h000(cssId,catId){
	//set the correct LI
	//match by page ID
	mioNavLoc('nav_'+cssId,'current');
	
	//initialize the lavalamp
	$(function() {
        $('#nav_wrapper_'+cssId).lavaLamp({
            fx: "backout", 
            speed: 700/*,
            click: function(event, menuItem) {
        		callback_000(event,menuItem);
        		return false;
            }*/
        });
    });
	
}
/*
function callback_000(e,el){
	//el is the LI element
	return false;
}*/