
var $ = jQuery.noConflict();

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


$(document).ready(function() {

	/* LINKS OUTLINE NONE IE */
	$("a").focus(function() {
  		$(this).blur();
	});
	
	/* SCROLL-PANE */
	$('#toscroll').jScrollPane({scrollbarWidth:10, scrollbarMargin:20});

	$('a.zoomit').zoomimage();

	
	/* CONTACT */
	/*$("form#formcontact").submit(function(){

	var str = $("form#formcontact").serialize();

   	$.ajax({
   	type: "POST",
   	url: "contact.php",
   	data: str,
   	success: function(msg){
    
	$("#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>';
			$("#fields").hide();
		}
		else
		{
			result = msg;
		}

		$(this).html(result);

		});

	}

 	});

	return false;

	});   
	
	*/
	
	
	

});

