$(document).ready(function() {

/* ======================================================================== */
/* menu haut */
/* ======================================================================== */
	$("#menuhaut>li").hover(
	  function () {
	  	$("#menuhaut>li>ul").hide();
	  	$(this).addClass("ici");
	    $(this).children("ul").slideDown("fast");
	  }, 
	  function () {
	    $(this).children("ul").hide();
	  	$(this).removeClass("ici");
	  }
	);
	
/* ======================================================================== */
/* donnees inci */
/* ======================================================================== */
	$("#fiche_inci h5").hover(
	  function () {
	    $(this).siblings("div").fadeIn("fast");
	  }, 
	  function () {
	    $(this).siblings("div").hide();
	  }
	);
	
/* ======================================================================== */
/* simulation placeholder */
/* ======================================================================== */
	$('input').placeholder();
	
/* ======================================================================== */
/* colorbox */
/* ======================================================================== */
	$('.popupbox').fancybox({
		'type': 'iframe',
		'padding': 15,
		'titlePosition'	: 'inside',
		'autoScale': false,
		'width': 600,
		'height': 350
	});

});

/* ouverture popup produits
function pop_prod(idprod) {
	popfen = window.open('produitpop.php?ref='+idprod, 'pop_prod', 'scrollbars=yes, width=610, height=400, left='+(screen.availWidth/2-305)+',top='+(screen.availHeight/2-200));
	popfen.focus();
}  */

