$(document).ready( function() {
    //switchEggoChild("#eggo_children li", "#/");
});

function loadLeggoMyEggo2008(div)
{
    var flashvars = {};
    var params = {};
    params.wmode = "transparent";
    params.allowFullScreen = "true";
    var attributes = {};
    var path = "_res/swf/LeggoMyEggo2008.swf";
    var expressInstallPath = "_res/swf/expressInstall.swf";
    swfobject.embedSWF(path, div, "100%","100%", "9.0.115.0", false, flashvars, params, attributes);
}

function switchEggoChild(eggoChildren, separator)
{
    var child= window.location.hash;
    child = child.replace(separator, "");
    if (child == "") return false;
    $(eggoChildren).each( function() {
	$(this).hide();
	$("#" + child).show();
    });
}
