	
$(document).ready(function($num) 
{
		
	 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)	
	$('div[class^=ShowHideTxt]').hide();
		
	
	$('a[class^=Txt]').click(function() 
	{
			var $this = $(this);
			var x = $this.attr("className");
			
			// on cache tous les champs avant de faire sortir celui souhaité			
			$n =7;
			for ($i = 1; $i <= $n ; $i++)
			{
				if ( x !=  'Txt0'+$i)
				{
					$('.ShowHideTxt0'+$i).hide();	
					$('.Txt0'+$i).text("Click here for more >>");
				}
			}			
			/////////////////////////////////////////////////////////////////
			
			
			$('.ShowHide' + x).toggle(200, function() {
				if (jQuery.browser.msie) {
			   		this.style.removeAttribute('filter'); // Msie ClearType fix 
				}
			});

							 
			if ($(this).text() == "<< Close"){
				$(this).text("Click here for more >>");				
			}
			else{
				$(this).text("<< Close");
			}	
		 	
		return false;
	 });	
		  
});