// JavaScript Document
$(document).ready(function() {

	$('#edit-search-block-form-1').val('Use a keyword, title, author or ISBN');
	$('#edit-search-block-form-1').focus(function () {
		if($(this).val() == 'Use a keyword, title, author or ISBN') {
			$(this).val('').addClass('filled');
		}
	});
	$('#edit-search-block-form-1').blur(function () {
		if($(this).val() == '') {
			$(this).val('Use a keyword, title, author or ISBN').removeClass('filled');
		}
	});

//--- Remove Delete Button from Taxonomy Term Edit Screen
	
	$('#taxonomy-form-term #edit-delete').css('display','none');
	$('.user-admin #taxonomy-form-term #edit-delete').css('display','inline-block');

});

