jQuery(document).ready( function($) {
	var prompt = 'Enter Keyword or Vacancy ID';
	$('form').jqTransform();
	if (!$('input#VacancySearchForm_VacancySearchForm_Keywords').val()) {
		$('input#VacancySearchForm_VacancySearchForm_Keywords').val(prompt);
	}
	$('input#VacancySearchForm_VacancySearchForm_Keywords').focus( function() {
		if ($(this).val() == prompt) {
			$(this).val('');
		}
	});
	$('.jqTransformSelectWrapper ul li a').bind('click', function() {
		$('select', $(this).parents('div.field')).change();
	});
	
	$('#searchBar a.clear-search').click( function() {
		$('#VacancySearchForm_VacancySearchForm').each( function() { this.reset($(this)) });
	});
});


