/* Author:  rheinschafe.de
 * Created: 01-2011
 */

window.log = function(){
 log.history = log.history || []; 
 log.history.push(arguments);
 if(this.console){
   console.log( Array.prototype.slice.call(arguments) );
 }
};

jQuery.noConflict();
jQuery(document).ready(function($){
  
  $('.mod-cycle-slider').cycle({
    fx:'scrollHorz',
    speed:500,
    timeout:2000,
    pause:1,
    random: 1,
    easing: 'easeOutQuad'
  });
  
  
});
