/*
 * Jnue 2007
 * This script is used in the featured wedding pages.  It is used to
 * toggle the drag button.
 */
function changetoggle( onoff )
{
var $theid = document.getElementById( "dragBar" ).style;
   if ( onoff == "over" )
	$theid.backgroundImage = "url(/images/Featured/toggle_over.gif)";

   if ( onoff == "off" )
	$theid.backgroundImage = "url(/images/Featured/toggle_off.gif)";

   return true;
}
