$(document).ready(function(){
	//debugger
	// Show Hide Comments
	if ($('a.slide').length > 0){
		// hide those divs
		$('div.comment-slide').hide();
		// slide effect
		$('a.slide').click(function(){
			$(this).parent().next('div').slideToggle('fast');
			if($(this).hasClass('expand')){
				$(this).removeClass('expand');
			} else {
				$(this).addClass('expand');
			}
			$(this).text($(this).text() == 'Hide individual friends savings' ? 'Show individual friends savings' : 'Hide individual friends savings');
			return false;
		});
	}
	
});
