$().ready(function(){
	$('#newsletter-self').click(function(event){
		event.preventDefault();
		
		if($('#newsletter-self').html() == 'Send Test Copy To Yourself'){
			$('#newsletter-self').html('Please Wait...');
			$.post('ajax/sendmail.php?toself=true',{message:$('#newsletter-textarea').val(),subject:$('#newsletter-subject').val()},function(msg){
				$('#newsletter-self').html('Send Test Copy To Yourself');
				alert(msg);
			});
		}
	});
	$('#newsletter').submit(function(event){
		event.preventDefault();
		
		if($('#newsletter-submit').val() == 'Send TO ALL!!!'){		
			$('#newsletter-submit').val('Please Wait...');
			$.post('ajax/sendmail.php',$(this).serialize(),function(msg){
				$('#newsletter-submit').val('Sent Successfully')
				if(msg) alert(msg);						
			});
		}
	});
	
	// checking if theres a search form
	if($('body').find('#searchform').length > 0){
		$('#searchinput').focus();
		$('#searchinput').autocomplete('ajax/ac-search.php',{ 
			minChars: 1,
			width: 760,
			selectFirst: false,
			scroll: false
		});
	}
	
	// checking if theres a login form
	if($('body').find('input[name=username]').length > 0){
		$('input[name=username]').focus();
	}
});
