function Events()
{
	this.initialize = function() {}
	
	this.checkSearch = function(field)
	{
		var error = false;
		var screen_name = $('#'+field).val();
		if(screen_name.length < 1 || screen_name.length == 'Fill in your Twitter name' || screen_name.length == 'Your Twitter name')
		{
			error = true
		}
		if(!error)
		{
			$.get('index.php', { page_id: 6, action: 'checksearch', screen_name: screen_name }, function(str)
			{
				var result = str.split('||');
				if(result[0] == 'false')
				{
					if(applicationObject.action != 'influence')
					{
						$('#errorMessageContent').html("<div class=\"txtErrorOverlay\"></div><p style=\"width:380px; font-family:Georgia, 'Times New Roman', Times, serif; font-size:12px; line-height:18px;\">We're sorry, but your profile was not found in our list of Marketing Communication professionals. Please tweet <a href='http://twitter.com/search?q=%23dmm' target='_blank'>#DMM</a> and your request if you want to be added to the list.</p>");
						tb_show('', '?keepThis=true&TB_inline?height=450&width=550&inlineId=errorMessage&modal=true', null);
					}
					else
					{
						$('#feedback').get(0).style.display = 'block';
					}
				}
				else
				{
					document.location.href = 'index.php?page_id=3&action=influence&madmen_id='+result[1];
				}
			});
		}
		else
		{
			if(applicationObject.action != 'influence')
			{
				$('#errorMessageContent').html("<div class=\"txtErrorOverlay\"></div><p style=\"width:380px; font-family:Georgia, 'Times New Roman', Times, serif; font-size:12px; line-height:18px;\">Fill in a twitter name please.</p>");
				tb_show('', '?keepThis=true&TB_inline?height=450&width=550&inlineId=errorMessage&modal=true', null);
			}
			else
			{
				$('#feedback').get(0).style.display = 'block';
			}
		}
	}
	
	this.checkRanking = function(field)
	{
		var error = false;
		var screen_name = $('#'+field).val();
		if(screen_name.length < 1 || screen_name.length == 'Fill in your Twitter name' || screen_name.length == 'Your Twitter name')
		{
			error = true
			$('#errorMessageContent').html("<div class=\"txtErrorOverlay\"></div><p style=\"width:380px; font-family:Georgia, 'Times New Roman', Times, serif; font-size:12px; line-height:18px;\">Fill in a twitter name please.</p>");
			tb_show('', '?keepThis=true&TB_inline?height=450&width=550&inlineId=errorMessage&modal=true', null);
		}
		
		if(!error)
		{
			$.get('index.php', { page_id: 8, action: 'getranking', screen_name: screen_name }, function(str)
			{
				var result = str.split('||');
				if(result[0] == 'false')
				{
					$('#errorMessageContent').html("<div class=\"txtErrorOverlay\"></div><p style=\"width:380px; font-family:Georgia, 'Times New Roman', Times, serif; font-size:12px; line-height:18px;\">We're sorry, but your profile was not found in our list of Marketing Communication professionals. Please tweet <a href='http://twitter.com/search?q=%23dmm' target='_blank'>#DMM</a> and your request if you want to be added to the list.</p>");
					tb_show('', '?keepThis=true&TB_inline?height=450&width=550&inlineId=errorMessage&modal=true', null);
				}
				else
				{
					$("#ranking_search").html(str);
					Cufon.refresh();
				}
			});
		}	
	}
	
	this.closeStats = function()
	{
		$("#line_stats").css({ display:'none' })
	}
}