// JavaScript Document

$(function() {
	/* FANCYBOX */
	if($('.fancybox').length > 0){
		$(".fancybox").fancybox({
			'overlayColor'  : '#FFF',
			'titlePosition' : 'over',
			'cyclic' : true
		});
	}
	if($('.fancyboxIframe').length > 0){
		$(".fancyboxIframe").fancybox({
			'type'  : 'iframe',
			'overlayColor'  : '#FFF',
			'titlePosition' : 'over',
			'width' : 850,
			'height' : 600
		});
	}
	$('ul.sf-menu').superfish({
		animation: {opacity:'show'},
        speed: 'fast'				  
	});
	
	
	
	$('.trigger_collapsable').bind('click', function(){
		cible = $(this).next('.collapsable');
		$('.collapsable:visible').not(cible).slideToggle();
		$(cible).slideToggle();	
		return false;
	});
	
	function collapse_div(trigger){
		$('.trigger_collapsable').bind('click', function(){
			cible = $(this).next('.collapsable');
			$('.collapsable:visible').not(cible).slideToggle();
			$(cible).slideToggle();	
			return false;
		});	
	}
	
	$(".validatedForm").validationEngine({promptPosition:"topLeft"});
	//$(".dropshadow").dropShadow({left: 8, top: 8, blur: 3, opacity: 0.4});

});

