function init() {
	//the dropdown containers (view details)
	$("a.view_details").click(show_hide);
	 		

 
$('.allclients').hide();    
 
 
 $('.bold').click(function () {
     $('.allclients').show(1000);
		 $('.resultclients').hide(1000);
		 $('.bold').hide(1000);
		 $('.match').hide(1000);
		 $('.match2').hide(1000);
    });	
	
			
		
	}


function show_hide() {
	var t = $(this);
	
	if(!t.is(".hide_details")) {
		t.addClass("hide_details");
		t.text("Hide Details");		
		t.prevAll("div.text_container:first").fadeIn(1000);
	}
	else {
		t.removeClass("hide_details");
		if($("div#page").is(".news"))
			t.text("Read the full article");	
		else
			t.text("View Details");
		t.prevAll("div.text_container:first").slideUp(500);
	}	
}





