function wireMSDSSearchBox () {
	$('#callout form').addClass('dynamic');
	
	var termsTextBox = $('#callout form #terms');
	var termsLabel = $('#callout form label');
	
	termsLabel.hide()
	
	termsTextBox.val(termsLabel.html());
	termsTextBox.addClass('default');
	
	termsTextBox.bind('focus', function () {
		if ($(this).hasClass('default')) {
			$(this).val('').removeClass('default');
		}
	});

	termsTextBox.bind('blur', function () {
		if ($(this).val() == '') {
			$(this).val(termsLabel.html()).addClass('default');
		}
	});
}

function addDynamicDropDowns () {
	$('#dropdowns form select').change(function () {
		$(this).parents('form').submit();
	});
}

$(document).ready(function () {
	wireMSDSSearchBox();
	addDynamicDropDowns();
});
