$(document).ready(function(){
	$("#footer input.text").click(function() {
		$(this).set("value", "");
	});
	$("#mainNav > li").bind("mouseover", function() {
		$(this).addClass("hover");
	});
	$("#mainNav > li").bind("mouseout", function() {
		$(this).removeClass("hover");
	});
});
