$(function() {
	// auto clear input fields
	$(".autoClear").each(function(index) {
			$(this).focus(function() { if ($(this).val() == $(this).attr("title")) { $(this).val(''); } });
			$(this).blur(function() { if ($(this).val() == '') { $(this).val($(this).attr("title")); } });
	});
	
	// menu
	$('#menu > ul li').hover(
		function () {
			$(this).find("ul").show();
		},
		function () {
			$(this).find("ul").hide();
		}
	);
});

