jQuery(document).ready(function(){ 
	// initialise menu
	jQuery('ul.sf-menu').superfish(); 
	
	// initialise lightbox		
	jQuery("a[rel=prettyPhoto]").fancybox({
		'padding' : '10'
	});
	jQuery("a.popup").fancybox({
		'padding' : '0',
		'width' : '75%',
		'height' : '75%',
		'type'				: 'iframe'
	});
	$('a.clicken').click(function(){
		$('.fr').fadeOut('fast');
		$('.en').fadeIn('fast');
	});
	$('a.clickfr').click(function(){
		$('.en').fadeOut('fast');
		$('.fr').fadeIn('fast');
	});
	
	if(document.location.href == 'http://www.destex.ch/success.html'){
		alert('Votre message a été envoyé avec succès.');
	}
	
});

