function selectStep(B){var C=B.target.id;
var A=B.target;
while(C==""){C=A.parentNode.id;
A=A.parentNode
}$(".stepContent").hide();
$(".step").addClass("unselected-step");
$(".step").removeClass("selected-step");
$(".step").removeClass("slider");
$("#"+C).removeClass("unselected-step");
$("#"+C).addClass("selected-step");
$("#"+C).addClass("slider");
$("#"+C+"Content").show()
}$(document).ready(function(){$(".step").mouseover(selectStep);
$(".stepLabel").mouseover(selectStep);
$(".stepContent").hide();
$("#step1Content").show()
})
