/* function to include other .js files on page; thanks to phpied.com */
function include_js(script_filename) {
    var html_doc = document.getElementsByTagName('head').item(0);
    var js = document.createElement('script');
    js.setAttribute('language', 'javascript');
    js.setAttribute('type', 'text/javascript');
    js.setAttribute('src', script_filename);
    html_doc.appendChild(js);
    return false;
};

/* include additional javascript files below */
/* include_js('filename.js'); */
/* eof */
function containerMinHeight(){
	if($('#container').height() < 400){
		$('#container').height(400);
	}
}

function highlightOnFocus(name){
	$(name).focus(input_highlight).blur(input_lowlight);
}

function input_highlight(){
	$(this).addClass('input_highlight');
}

function input_lowlight(){
	$(this).removeClass('input_highlight');
}