/*
 *	@titre: arabe.
 *	@description: javascript homeâge arabe - dream on.
 *	@auteur: neov - http://www.neov.net.
 *	@creation: 20100112.
 *	@modification: -
 *	@required: jQuery 1.3.2
 *
 */
$(
	function ()
	{
		
		// action sur les blocs etude.
		$('.client').each(
			function()
			{
				//$(this).css({height: 185, overflow: 'hidden'});
				var zthis = this;
				
				// rollover sur les images.
				$('.thumb > a', this).hover(
					function()
					{
						if(!ie6) {
							$(this).find('strong').css({opacity: 0});
							$(this).find('strong').stop(false, true).animate({opacity: 1}, {queue:false, duration:gtime, easing:"sineEaseOut"});
						}
						
						$(this).find('> img').stop(false, true).animate({opacity: 0.3}, {queue:false, duration:gtime, easing:"sineEaseOut"});
					},
					function()
					{
						$(this).find('> img').stop(false, true).animate({opacity: 1}, {queue:false, duration:gtime, easing:"sineEaseOut"});
					}
				);
			}
		);
	}
);
