$(document).ready(function() {
	/* C common.js */
	$('a#toolTelefoon, a#toolEmail').tooltip({
		position: 'bottom right',
		effect: 'slide',
		offset: [5, -105]
	});
	$('div#logo').css('cursor', 'pointer').click(function(){ window.location = '/';});
	/* end common.js */
	$.getJSON('http://twitter.com/statuses/user_timeline/hoogcarspelgc.json?count=5&callback=?', function(json){
		var box = $('div#tweetz0rs');
		box.html('');
		$.each(json, function(tweet, val){
			var statusupdate = val.text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g, function(url) {
				return '<a href="'+url+'">'+url+'</a>';
			}).replace(/\B@([_a-z0-9]+)/ig, function(reply) {
				return  reply.charAt(0)+'<a href="http://twitter.com/'+reply.substring(1)+'">'+reply.substring(1)+'</a>';
			});
			$('<div/>').html(statusupdate).appendTo(box);
		});
		//boxlist.cycle({ fx: 'scrollDown', easing: 'easeOutBounce', delay: -2000 });
		box.cycle({ fx: 'turnDown', timeout: 8000 })
	});
});
$(window).load(function() {
	$('#slidor').nivoSlider({
		directionNav:false,
		effect: 'sliceUpLeft',
		captionOpacity: 1
	});
});
