// for course view page : expanding menu functionality
// adapted from Timberland home page expanding menu

$(document).ready(function() {

	// course lost and twitter blocks - set height to taller of the two
	// by mireille.pedder@kineo.com 

	if ($('body#site-index').length){

		var heightTwitter = $(".block_twitter_user_stream .content").height();
		var heightCourselist = $(".block_tuc_course_list .content").height();
		var heightMax = Math.max(heightTwitter,heightCourselist);
		
		$(".block_twitter_user_stream .content").height(heightMax);
		$(".block_tuc_course_list .content").height(heightMax);

	}

});

