/**
 * @author acti
 */

function ajouter_favoris(url, text) {
	//window.external.addfavorite(url, text);
	if ( navigator.appName != 'Microsoft Internet Explorer' ) {
		window.sidebar.addPanel(text, url,"");
		return false;
	} else {
		//window.external.addfavorite('http://xhtml.css.free.fr/index.htm', 'XHTML CSS - faire un site en XHTML stric + CSS')
		return true;
	}
}

jQuery(document).ready(function () {
	/*
	jQuery("#carouselle").html(
		jQuery("#holder_images").html())
			.carousel3d({
				control : 'continuous',
				fadeEffect: 1,
				speed : 3,
				centerX: jQuery('#carouselle').offset().left + jQuery('#carouselle').width() / 2 - 60,
				centerY: jQuery('#carouselle').offset().top + jQuery('#carouselle').height() / 2 - 35,
				radiusY: -10,
				radiusX: 200,
				perspective: 1200,
				padding: 30
			}); 
*/
	//jQuery("#filinfo ul").liScroll();

	jQuery('div.toggle').hide();
	jQuery('a.toggle').click(function() {
		jQuery('div.toggle').hide();
		jQuery('#'+jQuery(this).attr('id')+'Cible').fadeIn();
	});
	
	jQuery('area.toggle').click(function() {
		jQuery('div.toggle').hide();
		jQuery('#'+jQuery(this).attr('id')+'Cible').fadeIn();
	});
	
	jQuery('.phototeque').diaporama();
	
});