// JavaScript Document

function clearForm(formIdent) { 
  var formname = formIdent;
  var inp = document.getElementsByTagName('input');
	for(var i = 0; i < inp.length; i++) {
		if(inp[i].type == 'text') {
			inp[i].value = '';
		}
	}
  var inp = document.getElementsByTagName('select');
	for(var i = 0; i < inp.length; i++) {
		inp[i].selectedIndex=0
	}
  document.listsearch.submit();

}

$(document).ready(function(){

    //When mouse rolls over
    $(".btnFrame li.parent").mouseover(function(){
        $(this).stop().animate({height:'225px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

    //When mouse is removed
    $(".btnFrame li.parent").mouseout(function(){
        $(this).stop().animate({height:'55px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

});

$(document).ready(function(){

    //When mouse rolls over
    $(".btnServices li.parent").mouseover(function(){
        $(this).stop().animate({height:'355px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

    //When mouse is removed
    $(".btnServices li.parent").mouseout(function(){
        $(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})
    });

});

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

<!--

//  The "refresh" function implementations are identical
//  to our regular "JavaScript-Refresh" example.  The only
//  difference from our JavaScript Refresh example is
//  we do not have a doLoad function that starts our
//  refresh timer (since we use a refresh button).

var sURL = unescape(window.location.pathname);

function refresh()
{
    window.location.href = sURL;
}
//-->

<!--
function refresh()
{
    window.location.replace( sURL );
}
//-->

<!--
function refresh()
{
    window.location.reload( false );
}
//-->
