
///////////////////// SUR !!
jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()
});

			$(document).ready(function(){
				/*====================== Exemple basique ======================*/
				$("#parent1").wslide({
					autolink: false,
					width: 320,
					height: 350,
					duration: 1000,
					effect: 'easeOutBounce',
					horiz: false
				});				
			});

<!-- Disable
function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")
document.oncontextmenu=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".msg_body").hide();
  //toggle the componenet with class msg_body
  $(".msg_head").click(function()
  {
    $(this).next(".msg_body").slideToggle(600);
  });
});

//-->


    $(function() {
        $('a.light').lightBox();
    });
//-->