$(document).ready(function(){
	
	//search box functionality

	var searchword;
	$('input#searchfield').focus(function() {
		searchword = $(this).val();
		$(this).val('');
	}).blur(function() {
		if (this.value == '') {$(this).val(searchword);};
	});
	
	//print entry
	
	$( "a#print-entry" ).attr( "href", "javascript:void( 0 )" ).click(function(){
		window.print() 
		// Cancel click event.
		return( false );
	});
	
	//faq list
	
	$('dl#faq-list dt').click(function() {

		if ($(this).hasClass('open')) {$(this).removeClass('open').next().slideUp();}
		else {$(this).addClass('open').next().slideDown();}
	});


});