jQuery.noConflict();
jQuery(function($) {
	//Home > references
	$('.references img').jcaption({
		copyStyle: true,
		animate: true,
		show: {height: "show"},
		hide: {height: "hide"}
	});
	
	//FOCUS 
	$("#myController").jFlow({
		slides: "#mySlides",
		controller: ".jFlowControl",
		slideWrapper : "#jFlowSlide",
		selectedWrapper: "jFlowSelected",
		width: "510px",
		height: "315px",
		duration: 500
		//prev: ".jFlowPrev",
		//next: ".jFlowNext"
	});
	
	$('.autoHide').focus(function() {
        if(this.value == this.defaultValue) {
            this.value = "";
        }
    }).blur(function() {
        if(!this.value.length) {
            this.value = this.defaultValue;
        }
    });
	

// ONGLETS
	$(".tab_content").hide(); 
	$("ul.calc_tabs li:first").addClass("active").show();
	$(".tab_content:first").show();

	$("ul.calc_tabs li").click(function() {
		$("ul.home_tabs li").removeClass("active");
		$(this).addClass("active");
		$(".tab_content").hide(200);

		var activeTab = $(this).find("a").attr("href");
		
		if($(this).find("a").find('img').attr('src')=="images/ref-portails.png"){
			$(this).find("a").find('img').attr('src', 'images/ref-portails-on.png');
			$("#tab_ong2").find('img').attr('src', 'images/ref-corporate.png');
			$("#tab_ong3").find('img').attr('src', 'images/ref-webtv.png');
		}
		if($(this).find("a").find('img').attr('src')=="images/ref-corporate.png"){
			$(this).find("a").find('img').attr('src', 'images/ref-corporate-on.png');
			$("#tab_ong1").find('img').attr('src', 'images/ref-portails.png');
			$("#tab_ong3").find('img').attr('src', 'images/ref-webtv.png');
		}
		if($(this).find("a").find('img').attr('src')=="images/ref-webtv.png"){
			$(this).find("a").find('img').attr('src', 'images/ref-webtv-on.png');
			$("#tab_ong2").find('img').attr('src', 'images/ref-corporate.png');
			$("#tab_ong1").find('img').attr('src', 'images/ref-portails.png');
		}

		
		$(activeTab).slideToggle(400);
		return false;
	});	
	
	
	
});


var menuSlider=function(){
	var m,e,g,s,q,i; e=[]; q=14; i=8;
	return{
		init:function(j,k){
			m=document.getElementById(j); e=m.getElementsByTagName('li');
			var i,l,w,p; i=0; l=e.length;
			for(i;i<l;i++){
				var c,v; c=e[i]; v=c.value; if(v==1){s=c; w=c.offsetWidth; p=c.offsetLeft}
				c.onmouseover=function(){menuSlider.mo(this)}; c.onmouseout=function(){menuSlider.mo(s)};
			}
			g=document.getElementById(k); 
			//g.style.width=w+'px';
			new_w=eval(w/2+p-5);
			g.style.left=new_w+'px';
		},
		mo:function(d){
			clearInterval(m.tm);
			var el,ew; el=parseInt(d.offsetLeft); ew=parseInt(d.offsetWidth);
			m.tm=setInterval(function(){menuSlider.mv(el+ew/2-8,ew)},i);
		},
		mv:function(el,ew){
			var l,w; l=parseInt(g.offsetLeft); w=parseInt(g.offsetWidth);
			if(l!=el||w!=ew){
				if(l!=el){var ld,lr,li; ld=(l>el)?-1:1; lr=Math.abs(el-l); li=(lr<q)?ld*lr:ld*q; g.style.left=(l+li)+'px'}
				if(w!=ew){var wd,wr,wi; wd=(w>ew)?-1:1; wr=Math.abs(ew-w); wi=(wr<q)?wd*wr:wd*q; 
					//g.style.width=(w+wi)+'px'
				}
			}else{clearInterval(m.tm)}
}};}();
