/*
Title:     		Home
Desc:			Fade in colour image on hover
Author:     	Mark Croxton, mcroxton@hallmark-design.co.uk
Copyright:		Hallmark Design
Updated:    	April 04 2008
*/

$(document).ready(function() {

	$('h3 > a').each(
		function (i) {
			$(this).html( $(this).html() + '<span></span>');
			//set opacity to 0
			$(this).children('span').fadeTo(1,0,'');
			$(this).children('span').css({
						visibility: 'visible'
					});
			$(this).hover(
				function() { 
				
				//mouseover	
					$(this).children('span').css({
						visibility: 'visible'
					});
					$(this).children('span').fadeTo(100,0.8,'');
				},
				function() {

				//mouseout
					$(this).children('span').fadeTo( 20 ,0.2,'');
				}
			);
		}

	);

/************	GERE L'AFFICHAGE DU TEXTE QUI APPARAIT A DROITE	***************************/
	$(".zoneHover").hover(function () {	
		$(".info").hide();	
		$("div.info",$(this).parent()).show(115);				
	},  															
	function () {												
		$(".info").hide(20);											
	}); 																
/*******************************************************************************************************/
	
	
});
