function loaded(){ var showCalendar = d3.select('#showCalendar'); var showLocation = d3.select('#showLocation'); var showEarth = d3.select('#showEarth'); var letsgodiv = d3.select('#letsgo'); showCalendar.on("mouseover", function(){ showCalendar.style('filter','invert(100%)'); }) .on("mouseout", function(){ showCalendar.style('filter','invert(0%)'); }); showLocation.on("mouseover", function(){ showLocation.style('filter','invert(100%)'); }) .on("mouseout", function(){ showLocation.style('filter','invert(0%)'); }) showEarth.on("mouseover", function(){ showEarth.style('filter','invert(100%)'); }) .on("mouseout", function(){ showEarth.style('filter','invert(0%)'); }) showCalendar.on("click", function(){ letsgodiv.transition().style('opacity',0).duration(200).on("end", function(){ letsgodiv.style('display','none'); d3.select('#calendar') .style('display','inline') .transition() .style('opacity',.95) .duration(400); }); }); showLocation.on("click",function(){ window.location = "http://share.garmin.com/DavidPoorman"; }); showEarth.on("click",function(){ window.location = "http://www.davidpoorman.com/ct/ctge"; }); };