$(function(){
	$('#navigation ul li').hover(function(){
		$(this).find('.mid').toggle();
	});
	
	$('#navigation ul li.active').hover(function(){
		$(this).find('.mid').show();
	});
	
	$('.blink').focus(function () {
		if ($(this).val() == $(this).attr('title')) {
			$(this).css('color', '#000').val('');
		}
	});
	
	$('.blink').blur(function () {
		if ($(this).val() == '') {
			$(this).css('color', '#000').val($(this).attr('title'));
		}
	});
	
	$('.box').hover(
		function(){ $(this).addClass('box-hover'); }, 
		function(){ $(this).removeClass('box-hover'); }
	);
	
	$('.bigbox').hover(
		function(){ $(this).addClass('bigbox-hover'); }, 
		function(){ $(this).removeClass('bigbox-hover'); }
	);
});
