$(document).ready(function() {

	$('#program div').hide();
	$('#after_school_clubs').show();

	$('#programmes img').hover(function () 
		{	
			$('#program div').hide();
			var thisTarget = $(this).attr('id'); 
			$(thisTarget).show();
			return false;
		}
	);

	$('#case_study div').hide();
	$('#case_study_1').show();

	$('#case_studies img').hover(function () 
		{	
			$('#case_study div').hide();
			var thisTarget = $(this).attr('id'); 
			$(thisTarget).show();
			$(".csm").each(function(){
				$(this).attr("src",$(this).attr("src").replace("_hi",""));
			});
			$(this).attr("src",$(this).attr("src").replace(".png","_hi.png"));
			return false;
		}
	);


    $(".testimonial").truncate( 140, {
        chars: /\s/,
        trail: [ ".. <a href='#' class='truncate_show'>&gt;&gt; Read More</a>", "<a href='#' class='truncate_hide'>&lt;&lt; Read Less</a>" ]
    });

	$(".article").truncate( 100, {
        chars: /\s/,
        trail: [ ".. <br /><a href='#' class='truncate_show'>Read More</a>", "<br /><a href='#' class='truncate_hide'>Read Less</a>" ]
    });

	$(".faq_answer").truncate( 15, {
        chars: /\s/,
        trail: [ ".. <a href='#' class='truncate_show'>&gt;&gt; View Answer</a>", "<a href='#' class='truncate_hide'>&lt;&lt; Hide Answer</a>" ]
    });

	
});



