﻿/* glossar */
function goto_location(url) {
  if ( url != '' && url != null ) window.location.href=url;
}

/* benötigt jquery und jquery cycle plugin */
jQuery(document).ready(function() {
  /*jQuery('#cycle').cycle({ fx: 'fade', speed: 2000, random:  1, timeout: 5000});*/
  jQuery('#cycle') 
  .cycle({ 
      fx:     'fade', 
      speed:  1000, 
      timeout: 5000, 
      pager:  '#cyclenav' ,
      next:   '#cycle', 
      pause:   1 
  })
  /*.after('<div id="cyclenav">');*/
});
