// JavaScript Document

$(function() {
	
	$('#accueil_presentation').premium({
		'itemsSelector' : '#cadre_numeros input',
		'viewsSelector' : '.view',
		'duration' : 'slow',
		'delay' : 7
	});	
	
	
	/*
	$('#cat_proteus').hover(function() { 
	$('#cat_proteus2 img').hide();
	$('#cat_edison img').hide();
	$('#cat_proteus img').fadeIn('slow');
	},function(){
	$('#cat_proteus img').fadeOut('fast');
	}
	);
	
	$('#cat_proteus2').hover(function() { 
	$('#cat_proteus img').hide();
	$('#cat_edison img').hide();
	$('#cat_proteus2 img').fadeIn('slow');
	},function(){
	$('#cat_proteus2 img').fadeOut('fast');
	}
	);
	
	$('#cat_edison').hover(function() { 
	$('#cat_proteus2 img').hide();
	$('#cat_proteus img').hide();
	$('#cat_edison img').fadeIn('slow');
	
	},function(){
	$('#cat_edison img').fadeOut('fast');
	}
	);
	*/
	
	$('#cat_chauffage').hover(function() { 
	$('#cat_heatstore img').hide();
	$('#cat_chauffage img').fadeIn('slow');
	},function(){
	$('#cat_chauffage img').fadeOut('fast');
	}
	);
	
	$('#cat_heatstore').hover(function() { 
	$('#cat_chauffage img').hide();
	$('#cat_heatstore img').fadeIn('slow');
	},function(){
	$('#cat_heatstore img').fadeOut('fast');
	}
	);
	


	
});

