$(document).ready(function() {
    $('.pageshadow').hide();
	
	$("#navi").delegate('li','mouseover mouseleave', function(li){
				if(li.type == 'mouseover')
				{
					$('.pageshadow').show();
					$("#navi").children(".tip#tip"+$(this).children('a').attr('title')+"").show();
				}
				else
				{
					$('.tip').bind('mouseenter', function() {
						$(this).show();
						$('.pageshadow').show();
					}).bind('mouseleave', function(){
						$(this).hide();
						$('.pageshadow').hide();
					});
					$('.pageshadow').hide();
					$("#navi").children(".tip#tip"+$(this).children('a').attr('title')+"").hide();
					
				}
	});
	
	
	
	$('#clock').cycle({
		fx:     'fade', 
		timeout: 5000
	});
	
	var clearMePrevious = '';

	$('.clearMeFocus').focus(function(){
			if($(this).val()==$(this).attr('title'))
			{
				clearMePrevious = $(this).val();
				$(this).val('');
			}
	});

	$('.clearMeFocus').blur(function(){
			if($(this).val()=='')
			{
				$(this).val(clearMePrevious);
			}
	});
});
