$(function(){
	initMainEffects();
});

function initMainEffects(){
	// Menu
	$('li span', '#menu').css({opacity:0, visibility:'visible'});
	$('li a', '#menu').hover(function(){
		$(this).find('span').stop(true).animate({opacity:1} ,500);
	}, function(){
		$(this).find('span').stop(true).animate({opacity:0} ,500);
	});
	
	// Search form reset
	$('#s', '#searchform').focus(function(){
		if($(this).attr('value') == this.defaultValue) $(this).attr('value', '');
	}).blur(function(){
		if($.trim(this.value) == '') this.value = (this.defaultValue ? this.defaultValue : '');
	});
	
	

}



jQuery(document).ready(function() {
    jQuery('#produit_une').jcarousel({
		scroll:1
									 });
});


// ANALYTICS

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

try {
var pageTracker = _gat._getTracker("UA-2931115-26");
pageTracker._trackPageview();
} catch(err) {}

