/****** Callback *********/	
function open_popup(ip){
	var h=430;
	var l=490;
	var hauteur=Math.round((screen.availHeight-h)/2); 
	var largeur=Math.round((screen.availWidth-l)/2); 
	window.open("http://webcallback.axialys.net/popup.php?ip="+ip, null, "width="+l+", height="+h+", top="+hauteur+", left="+largeur+", status=no, resizable=no, toolbar=no, menubar=no, scrollbars=no")
}

$(document).ready(function(){ // Jquery Start
						   
						   
/****** slide.JS *********/				   
		$(".slidev div, .slidev2 div").hide();
		$('.h1click').click(function(){
			$('.menu-Optim1').slideToggle("slow");
		 }).end();
		$(".slidev div").parent().click(function(){
			$(this).children('div').slideDown("slow");
		}).hover(function() {}, function() {
			$(this).children('div').slideUp("slow");
		}).end();
		
/****** slideShow home *********/			
		if ($('#slideshow').length) { // implies *not* zero
    		$("#slideshow").tabs({fx:{opacity: "toggle"}}).tabs();
		}
		
		
		
		
});// Jquery End
