var curCol;
$(document).ready( function() {
  $("#" + curID).css("background-color","#00A3E4");

  $(".nav").click( function() {
    $(this).next(".navDrop").toggle();
  });
  $("#v2topNav a").mouseover( function() {
    curCol = $(this).css("background-color");
    $(this).css("background-color", "#00a3e4");
  });
  $("#v2topNav a").mouseout( function() {
    $(this).css("background-color", curCol);
  });

  if (self.opener && self.opener.location.href.indexOf("3dsparkle.com")>-1)
  {
    $("#v2header").hide();
    $("#v2topNav").hide();
    $(".selectThis").show();
    $(".elemTitle").hide();
  }
  if( $("select.font").length > 0 )
    $(".fontNote:first").append("Click <b><a href=\"javascript:popup('enlarge.html?/lib/yhst-30652340113414/FontSelections.jpg')\">here</a></b> to view font choices")
});

  function checkSubmit(frm)
  {
    if (document.getElementById("confirm"))
    {
      if (!document.getElementById("confirm").checked)
      {
        alert("Please check the box indicating that the information on this page is correct.");
        return(false);
      }
    }
  }

function selectThis(code)
{
  var si = $("#specInstructions").val();
  if (si != '')
    si += "\r\n";
  $("#specInstructions").val(si + code);
}

