/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
// toggle helpme panel

$(document).ready(function() {
$('a.show_helpme_panel').click(function () {
		$('div#helpme').slideToggle("fast");
		return false;
})
});