<!--//

jQuery(document).ready(function($) {
  var a = $('.autocompletedvd').autocomplete({ 
    serviceUrl: '/jscripts/ajax_dvd.php',
    minChars: 2, 
    delimiter: /(,|;)\s*/,
    maxHeight: 400,
    width: 402,
    zIndex: 9999,
    deferRequestBy: 100,
    noCache: true,
    onSelect: function(value, data){
      $('.autocompletedvd').val( data );
    },
    params: {
      'genre': $('.autocompletedvdgenre').val()
    }
  });
});


//-->
