// jQuery Javascript Document - pj's carrousel
// timer gebruikt: http://plugins.jquery.com/project/timers

$(function() {
	
	$('#home-tab1').addClass('visible');
	$('#home-tab2').addClass('invisible');
	$('#home-tab3').addClass('invisible');
	currentblock = $('#home-tab1');
		
});

function showHomeTab1() 
{			
	currentblock.hide();					   
	currentblock = $('#home-tab1');
	currentblock.show();
}

function showHomeTab2() 
{												
	currentblock.hide();
	currentblock = $('#home-tab2');
	currentblock.show();
}

function showHomeTab3() 
{												
	currentblock.hide();
	currentblock = $('#home-tab3');
	currentblock.show();
}