/* *********************************************************************************** */ 
/* *********************************************************************************** APPEL GENERAL DES FONCTIONS */
/* *********************************************************************************** */
$(document).ready(function() {	
	ie6png();												// png sous ie6
	openNavProv();											// navigation provisoire
	cycleActuUp();											// cycle actualités page d'accueil
	formValid();											// cycle actualités page d'accueil
	interArchives();										// ouverture / fermeture des archives
	/* colorBox(); */										// ColorBox Homepage 
});

	

/* *********************************************************************************** */ 
/* *********************************************************************************** FONCTIONS */
/* *********************************************************************************** */

/* *********************************************************************************** IE6PNG */
var ie6png = function() {
	if ($.browser.msie && $.browser.version == 6.0) {
		$.ifixpng('css/skin/pix.gif');
		$('img[src$=.png]').ifixpng();
	}
}

/* *********************************************************************************** NAVIGATION PROVISOIRE */
var openNavProv = function() {
	$('.navProvOC a').click(function() {	
		if($(this).html()=='ouvrir la nav') {
			$(this).html('fermer la nav');	
		}
		else {
			$(this).html('ouvrir la nav');
		}		
		$('.navProvContent').animate({height: "toggle"}, 100);
		return false;		
	});
}

/* *********************************************************************************** CYCLE REALISATIONS */
var cycleActuUp = function() {
	$('.actu-up-actu')
		.cycle({        
			pager:  '#nav2',
			next:   '#next', 
			prev:   '#prev',
			timeout: 0
    	});
}

var formValid = function() {
	$('#avisForm input').click(function () { 
	      $('#avisForm').submit();
	    });
	
}

/* *********************************************************************************** OUVERTURE / FERMETURE DES ARCHIVES */
var interArchives = function() {
	$('.inter-archive').click(function() {	
		if($(this).html()=='LES QUESTIONS "A VOTRE AVIS"') {
			$(this).html('LES QUESTIONS "A VOTRE AVIS"');
			$(this).addClass('inter-on');
		}
		else {
			$(this).html('LES QUESTIONS "A VOTRE AVIS"');
			$(this).removeClass('inter-on');
		}
		$('#archives .archives-i').animate({height: "toggle"}, 100);
		return false;		
	});
	
}

var colorBox = function() {
	if(affichecolorBox == 1) {
		$.fn.colorbox({href:"/squelettes/home_box.html", width:"666", height:"360" });
	}
}


