jQuery(function(){
	jQuery('a[href$=#sendpassword]').live('click',function(){
		var data = {
			msg_title:'Request Password',
			loader_class:'inline_loader',
			html:'<div>\
					<form id="fmLoginForm" action="/p/do/sendpassword/login.html" method="post">\
					<input type="hidden" name="dinamic" value="1"> \
				    <table >\
				    	<tr>\
				        	<td>\
				    	<label style="width:50px;">Email Address:</label>\
				        </td><td>\
				        <input type="text" name="email" value="" size="20" />\
				</td>\
				        </tr>\
				    </table>\
				    </form>\
				</div>',
			buttons:[
					{onclick:'Goingup.Dialog.Hide()',value:'Close','class':'ko'},
					{onclick:'Goingup.Dialog.OK()',value:'OK'}
				]
		}
		Goingup.Dialog.Show(data);	
		
	});
});	
