function hideProductForm(changeSelection, hideSelection, noteSelection){
  $(hideSelection).hide();
  $(noteSelection).html("<span class='red'>begin customizing here</span>");
  $(changeSelection).change(function(){
    if ($(changeSelection).attr("selectedIndex") != 0) {
      $(hideSelection).show();
      $(noteSelection).html("");
    }
  });
}

function alertChoose(changeSelection){
  alert("please " + $(changeSelection + " option:selected").text());
  return false;
}

$(document).ready(function(){
  // Sets up Fancy Boxes
  $("div#product_left_images").children("a").fancybox({
    hideOnContentClick: true,
    zoomSpeedIn: 500,
    zoomSpeedOut: 500,
    frameWidth: 500,
    frameHeight: 500,
    overlayShow: false,
    overlayOpacity: 0.4,
    padding: 0,
    zoomOpacity: true,
    centerOnScroll: false,
    itemLoadCallback: null
  });
  $("div#product_left_images_enlarge a, div#product_left_images_caption div a, div.product_left_general a").fancybox({
    hideOnContentClick: true,
    zoomSpeedIn: 500,
    zoomSpeedOut: 500,
    frameWidth: 500,
    frameHeight: 500,
    overlayShow: false,
    overlayOpacity: 0.4,
    padding: 0,
    zoomOpacity: true,
    centerOnScroll: false,
    itemLoadCallback: null
  });
  $("div.product_right_info_buttons_left a").fancybox({
    hideOnContentClick: true,
    zoomSpeedIn: 500,
    zoomSpeedOut: 500,
    frameWidth: 555,
    frameHeight: 285,
    overlayShow: false,
    overlayOpacity: 0.4,
    padding: 0,
    zoomOpacity: true,
    centerOnScroll: false,
    itemLoadCallback: null
  });
  $("div#product_left_images_get_this_look a").fancybox({
    hideOnContentClick: true,
    zoomSpeedIn: 500,
    zoomSpeedOut: 500,
    frameWidth: 345,
    frameHeight: 445,
    overlayShow: false,
    overlayOpacity: 0.4,
    padding: 0,
    zoomOpacity: true,
    centerOnScroll: false,
    itemLoadCallback: null
  });
  $("div#product_left_options_tabs div:not(.product_left_options_div_slider) a, div#product_left_options_tabs_slide a").not(".iframe").fancybox({
    imageScale: false,
    hideOnContentClick: true,
    zoomSpeedIn: 500,
    zoomSpeedOut: 500,
    frameWidth: 700,
    frameHeight: 500,
    overlayShow: false,
    overlayOpacity: 0.4,
    padding: 0,
    zoomOpacity: true,
    centerOnScroll: false,
    itemLoadCallback: null
  });
  $("div#product_left_options_tabs a.iframe").fancybox({
    hideOnContentClick: true,
    zoomSpeedIn: 500,
    zoomSpeedOut: 500,
    frameWidth: 700,
    frameHeight: 450,
    overlayShow: false,
    overlayOpacity: 0.4,
    padding: 0,
    zoomOpacity: true,
    centerOnScroll: false,
    itemLoadCallback: null
  });
});