$(document).ready(function() {
	
	$("a.forgotten_pass").click(function() {	
		$.fumodal ({	
			width:340,
			height:180,
			style:true,
			url:'http://www.lawuntoyourself.com/ajax/forgotten_pass',
			title:'<b>Forgotten password</b>'
		});		
		return false;
	});
	
	$(function() {
		$('[type=submit]').css('cursor','pointer');
	});
	
});