

$(document).ready(function() {

	if( window.location.toString().indexOf("_preview.htm") !== -1 ){
		urlSuffix = "_preview";
	} else {
		urlSuffix = "";
	}

  // add id's to all the titles
  // and put them in the drop down
  var counter = 1;
  $("#conversions_gallery h3").each( function() {
    $(this).before("<a href='conversion"+urlSuffix+".htm#top' class='top'>top of page</a>");
    $(this).attr('id',counter);
    $("#conversions_gallery_nav select").append('<option value="' + counter + '">' + $(this).html() + '</option>');
    counter++;
  });

  // jump to the new section
  $("#conversions_gallery_nav select").change( function() {
    window.location = 'conversion'+urlSuffix+'.htm#'+ $(this).val();
  });

  $(".show_one ul").hide();
  $(".show_one div").click( function() {
    $(this).find("ul").slideToggle();
  } );




});

