$(function() {
	
	$("a.login").click(function() {		
		$.fumodal({	
			width:360,
			height:240,
			style:true,
			url: base_url + 'ajax/login',
			title:'<b>Login</b>'
		});		
		
		return false;
	});
	
	$("a.logout").click(function () {
		$.fumodal({	
			width:250,
			height:100,
			style:true,
			content: '<p style="text-align: center; margin-top: 15px; font-size: 12px;">Logging you out ... Please wait.</p>',
			title:'<b>Login</b>'
		});
		
		$.post(base_url + "user/logout", {}, function() {
			window.location.href = base_url + 'home/page/logout';
		});
		return false;
	});	
	
});
