$().ready(function() {
	var images = new Array(
			'', // leave empty!
			'featured-facebook.jpg',
			'featured-02.jpg',
			'featured-01.jpg', 
			'featured-03.jpg', 
			'featured-04.jpg',
			'facebook-gewinnering.jpg'
		);
	var countThumbs = 1;
	function thumbCycle() {
		window.setTimeout(thumbCycle, 8000);
		$('.featured-thumbs li').each(function () {
			$(this).removeClass('bordered');
		});
		$('li.tab'+countThumbs).addClass('bordered');
		var newSrc = images[countThumbs];
		$('#f').attr('src', 'content/'+newSrc);
		if(countThumbs == 6) {
			countThumbs = 1;
		} else {
			countThumbs++;
		}
	}
	thumbCycle();
});
