$(function() {
	$(".slideshow").delay(4000).fadeIn(1200);
});

$(function() {
	$('.slideshow').cycle({
	fx: 'fade', 
	speed:    3000, 
	timeout:  7000 
	});
});

$(function() {
	var $tabs = $('#page').tabs(); // first tab selected
	$('#lienssites').click(function() { // bind click event to link
	$tabs.tabs('select', 6); // switch to third tab
	return false;
	});
	var $tabs = $('#page').tabs(); // first tab selected
	$('#lienslexique').click(function() { // bind click event to link
	$tabs.tabs('select', 7); // switch to third tab
	return false;
	});
	var $tabs = $('#page').tabs(); // first tab selected
	$('#liensenglish').click(function() { // bind click event to link
	$tabs.tabs('select', 8); // switch to third tab
	return false;
	});
	$("#page").tabs({ fx: { opacity: 'toggle' } });
	$("#apropos-tabs").tabs({ fx: { opacity: 'toggle' } });
	$("#services-tabs").tabs({ fx: { opacity: 'toggle' } });
});


