//Jquery Code goes here
$(document).ready(function(){

	// add some default verbiage to the text input and have it disappear when the user focuses on it
    var searchString = 'enter search term';
    
    // set input value (text)
    $('form#search-theme-form input#search-theme-form').val(searchString);
    
    // focus
    $('form#search-theme-form input#search-theme-form').focus(function(){
        if ($(this).val()==searchString) $(this).val('');
    });
    
    // blur
    $('form#search-theme-form input#search-theme-form').blur(function(){
        if ($(this).val()=='') $(this).val(searchString);
    });
    
    // 20090114 ERL
    // fixing css drop down mensus. IE6 ignores ":hover" on LIs
    $('div.menu li').hover(
        function(){
        	$('ul:first', $(this)).show();
        },
        function(){
        	$('ul', $(this)).hide();
        }
    );
    
	//Personal events mods
	jQuery(".GTEntryDescription:contains('Please answer the following additional question')").hide();
	if(document.getElementById("GTEntryHeading") {
		jQuery("#cons_title").hide();
		jQuery("label[for='cons_title']").hide();
	
	}
	
});