jQuery(document).ready(function(){  

	// mousover sur les "produits"
	jQuery('ul.third_col li').hover(function(){
		jQuery(this).siblings().children().stop().fadeTo(200, 0.3);	
	},function(){
		jQuery(this).siblings().children().stop().fadeTo(100, 1, function(){
			if (jQuery.browser.msie && jQuery(this).css("filter") && jQuery(this).css("opacity") == 1) jQuery(this)[0].style.removeAttribute('filter');});
	});	
	
	jQuery(window).error(function(event){
		if (console && console['debug'])
			console.debug(event);
		return true;
	});
	
	window.store = {};
	window.App   = window['App'] || {};

});
