$(function() {
	$('#ea-forte-searchbox-form').submit(function() {
		$('#ea-forte-searchbox input').map(function(){
			if ($(this).attr('title') == $(this).val()) {
				$(this).val('');
			}
		});
		return true;
	});
	$('#ea-forte-searchbox input').focus(function() {
		if ($(this).attr('title') == $(this).val()) {
			$(this).val('');
		}
	});
	$('#ea-forte-searchbox input').blur(function() {
		if (!$(this).val()) {
			$(this).val($(this).attr('title'));
		}
	});
	

	$('#ea-forte-searchbox select[name=make_id]').change( function() {
		if ($('#ea-forte-searchbox select[name=model_id]')) {
			var model_selection = ModelSelection($('#ea-forte-searchbox select[name=model_id]'), $(this).val());
			model_selection.setMode('');
			model_selection.load();
		}
	});
});