$(document).ready(function() {
	$('input#plecare').autocomplete(APP_URL + 'ajax.get_stations.php', {
		width: 170,
		delay: 10
	});
	$('input#sosire').autocomplete(APP_URL + 'ajax.get_stations.php', {
		width: 170,
		delay: 10
	});
	$('input.txt').focus(function() {
		$('#' + this.id).removeClass('empty');
		$('#' + this.id).addClass('withfocus');
		if (this.id == 'plecare' && $('#' + this.id).val() == 'Statie plecare')
		{
			$('#' + this.id).val('');
		}
		if (this.id == 'sosire' && $('#' + this.id).val() == 'Statie sosire')
		{
			$('#' + this.id).val('');
		}
	});
	$('input.txt').blur(function() {
		$('#' + this.id).removeClass('withfocus');
		if ($('#' + this.id).val() == '')
		{
			$('#' + this.id).addClass('empty');
			if (this.id == 'plecare')
			{
				$('#' + this.id).val('Statie plecare');
			}
			if (this.id == 'sosire')
			{
				$('#' + this.id).val('Statie sosire');
			}
		}
	});
}); // $(document).ready
