jQuery.noConflict();

jQuery(document).ready( 
  function(){ 

    jQuery('div.scrollable_events').scrollable({
      easing: 'swing',
      speed: 1500,
      items: '#container_events',
      circular: true
    }).autoscroll({ autoplay: true, autopause: true, interval: 10000 });

    jQuery('div.scrollable_news').scrollable({
      easing: 'swing',
      speed: 1500,
      items: '#container_news',
      circular: true
    }).autoscroll({ autoplay: true, autopause: true, interval: 10000 });

    jQuery('input#searchfield').val('SUCHE');
    jQuery('input#searchfield').focus( function() {
      if ( this.value == 'SUCHE' ) { this.value = '' }
    });
    jQuery('input#searchfield').focusout( function() {
      if ( this.value == '' ) { this.value = 'SUCHE' }
    });

  } 
);


