/**
 * Javascript
 */
function getReason(id, updateelement){
	new Ajax.Updater(updateelement, 'showreasons.php', { method:'post', parameters:'brid='+id } );
}

/* Home page Mast Scroller
*/
function hSlideBy(direction, panels){
	if(direction=='r'){ direction = -1;}else{ direction = 1;}
	new Effect.Move($('panelgrid'), { x: ((963*panels)*direction), y: 0 });
}
	