$(document).ready(function() {
          $('.text')
	.focus(function() {
              if ($(this).val() == $(this).attr('title')) { $(this).val(''); }
          })
    .blur(function() {
              if ($(this).val() == '') { $(this).val($(this).attr('title')); }
          });
	$('#topnav').superfish({
		pathClass : 'current',
		animation : {opacity:'show'},
		delay : '1200'
	});

	$(".events tr,.previous tr").mouseover(function() {$(this).addClass("ehover");}).mouseout(function() {$(this).removeClass("ehover");}).click(function() {$(this).addClass("current");});
	$(".button").corner("30px");
});