$(function() { // document.ready

	// header search input
	$('#searchWords')
		.focus( function() {
			if (this.value == 'Search') this.value = '';
		})
		.blur( function() {
			if (!this.value.replace(/\s*/,'')) this.value = 'Search';
		});

	// page jump via select
	$('select.jump')
		.change( function() {
			if (this.value) window.location.href = this.value;
		});

	// Ask a Question submission button (link)
	$('#submitQuestion')
		.click( function() {
			$(this).parent('form').submit();
			return false;
		});

});
