function showTab(tab) {
	other = Math.abs(tab-2)+1;
	$('#snelzoeken-fg').removeClass('tab'+other).addClass('tab'+tab);
	
	$('#snelzoeken-fg-content div.tab'+other).hide();
	$('#snelzoeken-fg-content div.tab'+tab).show();
}

$(document).ready(function() {

	$('#banner-gezocht').cycle({
		fx:    'fade',
		pause:  1,
		timeout:  5000
	});

	$('#snelzoeken-fg-header div.left').click(function() {
		showTab(1);
	});
	
	$('#snelzoeken-fg-header div.right').click(function() {
		showTab(2);  
	});
	
});
