$(document).ready(function() {
	$(".topCornerLink .toggleLink").click(function() {
		$(this).parent().parent().children(".dropDownContent").slideToggle("slow");
		if($(this).text().substr(0, 5) == 'View ')
			$(this).html('Hide ' + $(this).html().substr(5, $(this).html().length - 5));
		else
			$(this).html('View ' + $(this).html().substr(5, $(this).html().length - 5));
	});	
	
	$("#testimonials .sources li").each(function() {
		if($(this).css('clear') == 'none' && $(this).prev('li').height() != $(this).height()) {
			if($(this).prev('li').height() < $(this).height())
				$(this).prev('li').css('height', $(this).height() + 'px');
			else
				$(this).css('height', $(this).prev('li').height() + 'px');
		}
	});
});