// A collection of interface scripts used on RMW Web Publishing


// Standout
// moves it out of normal content flow
// As standout is positioned with 'absolute' is may cover other content
// This allows users to hide the content
$(function() {	$("div.standout")
		.css('position', 'absolute')
		.css('right', '5px')
		.prepend('<span class="close">close</span>');
	$("span.close").click(function() {
		$(this).next().
			slideToggle("slow");
	});
});