
var J = jQuery.noConflict();

/* SUPERSIZED */
J(function(){
	J.fn.supersized.options = {  
		startwidth: 1024,  
		startheight: 700,
		minsize: .50,
		slideshow: 0 
	};
	J('#supersize').supersized(); 
});


/* LINKS OUTLINE NONE IE */
J(document).ready(function() {
	J("a").focus(function() {
  		J(this).blur();
	});
		
	J('a[rel=external]').click(function(){
		window.open(this.href); 
		return false;
  	});
  	
  	
	
	J("#warn").hide();
	J('#okfilm').click(function () {
        J('#warn').slideToggle('fast');
        return false;
    });
	
	
	//contact
	J("form#formcontacto").submit(function(){

	var str = J("form#formcontacto").serialize();

   	J.ajax({
   	type: "POST",
   	url: "contact.php",
   	data: str,
   	success: function(msg){
    
	J("#note").ajaxComplete(function(event, request, settings){

		if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
		{
			result = '<div class="notification_ok">Votre message a &eacute;t&eacute; envoy&eacute;. Merci.<br />Su mensaje ha sido enviado con &eacute;xito.<br />Your message has been sent successfully.</div>';
			J("#fields").hide();
		}
		else
		{
			result = msg;
		}

		J(this).html(result);

		});

	}

 	});

	return false;

	});   
	
	
	
	
	

});