/******************************************************************************
* www.carpestudentem.org, connection page script
*
* @author Simon Busard
* @date   12/04/2010
*
******************************************************************************/

$(function() {

	$("div#lost_pass_box").hide();
	$("h3#lost_pass_title").wrapInner("<a href='' />");
	$("h3#lost_pass_title > a").css("text-decoration","none");
	$("h3#lost_pass_title > a").hover(
		function() {
			$(this).css("text-decoration","underline");
		},
		function() {
			$(this).css("text-decoration","none");
		});
	$("h3#lost_pass_title > a").click(
		function(event) {
			event.preventDefault();
			$("div#lost_pass_box").slideToggle();
		});	
});

