$( function () {
	
	
	$('div.bloc-text-duvideo').find('a').click (
		function () 
		{
			
			$(this).parents('.parole-inner').toggleClass('open_video_pop');	
			
		}
	);
	
	$('.imprim-vert')
			.hover(
				function()
				{
					$('.pop-imprim').show();
				},
				
				function()
				{
					$('.pop-imprim').hide();
				}
			);
		
		$('.imprim-vert')
			.hover(
				function()
				{
					$('.pop-imprim-bleu').show();
				},
				
				function()
				{
					$('.pop-imprim-bleu').hide();
				}
			);
		
		// tooltip here.
		$('.tt').each(
			function()
			{
				//$(this).addClass('ttrelative');
				$(this)
					.hover(
						function()
						{
							$(this).addClass('ttrelative');
							$('.tooltip', this).css({left: '-25px'});
						},
						
						function()
						{
							$(this).removeClass('ttrelative');
							$('.tooltip', this).css({left: '-25000px'});
						}
					)
					.focus(
						function()
						{
							$(this).addClass('ttrelative');
							$(this).css('z-index', 1000);
							$('.tooltip', this).css({left: '-25px'});
						}
					)
					.blur(
						function()
						{
							$(this).removeClass('ttrelative');
							$(this).css('z-index', 0);
							$('.tooltip', this).css({left: '-25000px'});
						}
					)
			}
		);
	
	// simulation target blank.
	$('.target-blank').each(
		function()
		{
			$(this).click(
				function()
				{
					window.open($(this).attr('href'));
					return false;
				}
			);
		}
	);
		
	// **** A PERSONNALISER ****	
	// autoclear formulaire.
	$('.autoclear').each(
		function()
		{
			$(this)
				.focus(
					function()
					{
						$(this).val('');
					}
				)
				.blur(
					function()
					{
						if($(this).val()=='')
						{
							$(this).val($(this).attr('title'));
						}
					}
				)
		}
	);
})



