jQuery.noConflict();

jQuery(function() {
  /*SLIDESHOW*/
  jQuery('#slideshow ul li').not(':first').hide().filter('li:last').addClass('endSlide')
  var int=self.setInterval("next()",3000)
  jQuery('.nieuwsBox a:last').addClass('last');
  
})

function next() { 
  if(jQuery('#slideshow ul li:visible').is('.endSlide')) { 
    jQuery('#slideshow ul li:visible').fadeOut(function() { jQuery('#slideshow ul li:first').fadeIn('slow') })
  }
  else { jQuery('#slideshow ul li:visible').fadeOut(function() { jQuery(this).next().fadeIn('slow') }) }
}

jQuery(function($) {

  $('.contact span > a').each(function(){
    var x = $(this).parent().attr('style');
    $(this).attr('style',x);
  })
})

