/**
 * DOM-structuur ingeladen
 */
$(document).ready(function (){
	
	$('#slider').nivoSlider({ pauseTime:5000, pauseOnHover:false, directionNav:false, controlNav:false });
	
	$('ul#menu>li').hover(function (){
		$(this).find('a').next().show();
	}, function (){
		$(this).find('a').next().hide();
	});
	
	
	$.jTwitter('kmdesignweb', 2, function(posts) {
		$.each(posts, function(i, post){
            $(".kolomFooter:first").append('<p><img src=\'' + posts[i].user.profile_image_url + '\' alt=\'twitter\' title=\'twitter\' class=\'twitter\' />' + posts[i].text + '<br /><span class=\'datum\'>' + posts[i].created_at + '</span><p>');
        });
		
	});
	
	$('.kolomFooter:first').click(function (){
		window.location = 'http://twitter.com/kmdesignweb';
	});
});
