//$.noConflict();
var plz = new Array();
jQuery(document).ready(function($) {
  
  $("video").VideoJS();

  $("#if_details").hide();

  $("#vertriebsgebiet").numeric();

  var flow_produkt = new ImageFlow();
  flow_produkt.init({ ImageFlowID: 'FlowContainer',
                     reflections: false, 
                     imageFocusMax: 2,
                     slider: false,
                     captions: false,
                     opacity: false,
                     aspectRatio: 1.65, 
                     imagesHeight: 0.7,
                     startID: 3,
                     slideshow: true,
                     slideshowAutoplay: true,
                     slideshowSpeed: 3000,
                     onClick: function() {
                       $("#if_details").fadeOut(100);
                       $("#if_details").html($("#if_" + this.getAttribute('longdesc')).html());
                       $("#if_details").fadeIn(1000);
                     }
  });
  
  $("#if_details").click(function() {
     $("#if_details").fadeOut(100);
  });

  $("fieldset.collapsibleClosed").collapse({
    "closed": true 
  });
  
  $('#featured').orbit({          
    "animation": 'fade', //fade, horizontal-slide, vertical-slide
    "advanceSpeed": 6000,
    "restartClock": true,
    "restartClockTimer": 2000,
    "directionalNav": false,
    "timer": true 
  });

  $("#vertriebsgebiet").autocomplete({
     data: plz,
     minChars: 4,
     selectFirst: true,
     showResult: function(value, data) {
        return '<span>' + value + ' ' + data[0] + '</span>';
     },
     onItemSelect: function(item) {
       $("#gebiet").attr("action", item.data[1]);
       $("#vertriebsgebiet").val(item.value + ' ' + item.data[0]);
       $("#gebiet").submit();
     }
  });

  $("#plz").plz({
    url: "/produktregion.json", 
    notfoundtext: "ist derzeit nicht im PLZ-Gebiet",
    notfoundurl: "/neukunde.html",
    redirect: true,
    expires: 100,
    inputplzlabel: "Geben Sie einfach Ihre PLZ ein und gelangen Sie zu Ihren Produkten:",
    plztariflabel: "Gewählter Ort",
    submitplzlabel: "senden",
    submitplzpic: "http://www.gasversorgung-unterland.de/media/115/suche_pfeil.png"
  });


/*
  $("#vertriebsgebiet").autocomplete({
     data: ort,
     minChars: 3,
     showResult: function(value, data) {
        return '<span>' + data[0] + ' ' + value + '</span>';
     },
     onItemSelect: function(item) {
       $("#vertriebsgebietPage").val(item.data[1]);
       $("#vertriebsgebiet").val(item.data[0]);
     }
  });
*/
});
