
(function($){
	if ($('.twittersliderwrapper').length) $('.twittersliderwrapper').twitterslider({loop:false});
	if($('#clients_holder').length)	$('#clients_holder').clientsslider({loop:false});
	if ($('.teamblock').length) $('.teamblock').each(function() { $(this).teamblock(); })
	if ($('.opdrachtgeverblock').length) $('.opdrachtgeverblock').each(function() { $(this).opdrachtgeverblock(); })
	
	if ($('.clientblock').length) {
		$('.clientblock').mouseover(function(){
			$(this).animate({
				backgroundPosition: '0 -235px'
			});
		});
		$('.clientblock').mouseout(function(){
			$(this).animate({
				backgroundPosition: '0 0'
			});
		});
	}
	
	

	
})(this.jQuery);


window.log = function(){
  log.history = log.history || [];   
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};
(function(doc){
  var write = doc.write;
  doc.write = function(q){ 
    log('document.write(): ',arguments); 
    if (/docwriteregexwhitelist/.test(q)) write.apply(doc,arguments);  
  };
})(document);



