(function() {
	$("#ort").autocomplete('locations.php');

	$('#copyright').focus(function(e) {
		if ($(e.target).val() == 'Konstn\u00e4r/Fotograf')
			$(e.target).val('');
	}).blur(function(e) {
		if ($(e.target).val() == '')
			$(e.target).val('Konstn\u00e4r/Fotograf');
	});

	$('#ort').focus(function(e) {
		if ($(e.target).val() == 'Ort')
			$(e.target).val('');
	}).blur(function(e) {
		if ($(e.target).val() == '')
			$(e.target).val('Ort');
	});

	$('#bildarkiv_sokform_avanc_reset').click(function(e) {
		$('select', e.target.form).val('');
		$('#copyright').val('Konstn\u00e4r/Fotograf');
		$('#ort').val('Ort');

		e.preventDefault();
	});
	
	$('#bildarkiv_sokform_avanc_reset_eng').click(function(e) {
		$('select', e.target.form).val('');
		$('#copyright').val('Artist/Photographer');
		$('#ort').val('Locality');

		e.preventDefault();
	});
	
})(jQuery);

