/**
 * Javascript
 */


function getReason(id, updateelement){
	new Ajax.Updater(updateelement, 'showreasons.php', { method:'post', parameters:'brid='+id } );
}


jQuery.noConflict();

jQuery(document).ready(function($) {
	
	$('#searchbox').focus(function() {
		if ($(this).val() == 'Search Firm Beliefs') {
			$(this).val('');
		}
	});
	
	$('#searchbox').blur(function() {
		if ($(this).val() == '') {
			$(this).val('Search Firm Beliefs');
		}							  
	});

});

	
