$(function(){
			
			$('a.toggle').click(function(){
				$('#rmiForm').toggle('200');
				$(this).toggleClass("opened");
				return false;		//avoids jump to top of screen
			});
		
		});
