// JavaScript Document
window.addEvent('domready', function() {
	// OVER DE BOX BLEU
		$$('.boxGrey').each(function(item){
			item.addEvent('mouseover', function(e) {
				e = new Event(e).stop();
				this.addClass('overBlue')
			});
			item.addEvent('mouseout', function(e) {
				e = new Event(e).stop();
				this.removeClass('overBlue')
			});
		});
		// TIPS
		var tips = new Tips($$('.tipsInfo'), {
			initialize:function(){
				this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
			},
			onShow: function(toolTip) {
				this.fx.start(1);
			},
			onHide: function(toolTip) {
				this.fx.start(0);
			}
		});
		if($('secMenu')){
			var mySlide = new Fx.Slide('secMenu');
			mySlide.toggle().chain(function(){
				mySlide.toggle();
			});
		}
});

function registerMail(){
	var email = document.getElementById('emailInput').value;
	if(email == '' || email == 'Votre courriel'){
		alert('Champ courriel vide');
	}else{
		document.location = 'exec.php?m=register&email='+email;
	}
}
function searchProd(){
	var mc = document.getElementById('mcInput').value;
	if(mc == ''){
		alert('Champ mot cle vide');
	}else{
		document.location = 'search.php?mc='+mc;
	}
}
function addShip(){
	var ship = document.getElementById('ship').value;
	var idC = document.getElementById('idC').value;
	if(ship == ''){
		alert('Champ transport vide');
	}else{
		document.location = 'exec.php?m=saveShip&idC='+idC+'&ship='+ship;
	}
}
