// JavaScript Document
var value = '';
$(document).ready(function(){
	$(".form_clear").click(function(){
		var value = this.value;
		this.value = '';
		$(this).blur(function(obj){
			if (this.value.length == 0)
				this.value = value;
			value = '';
		});
	});
	$("#navmenu-h li,#navmenu-v li").hover( function() { $(this).addClass("iehover"); }, function() { $(this).removeClass("iehover"); } );
});
