/*
	Expand truncated tips etc.
	Used on Recipe page.
*/


$(document).ready(function() {
	jQuery('.hiddentip').hide();
	jQuery('.moretip_button').click(
		function(eventObj){
			showHiddenExpanded(eventObj.target.hash);
			jQuery(this.parentNode).hide();
			eventObj.preventDefault();
			eventObj.stopPropagation();
		}
	);
});

function showHiddenExpanded(selector){
	jQuery(selector).show();
};

function closeHiddenExpanded(){
	jQuery('.hiddentip').hide();
	jQuery('.truncatedtip').show();
};