jQuery(function($) {
	$('.blink').focus(function(){
		if( $(this).val() == $(this).attr('title') ) {
			$(this).val('');
		}
	}).blur(function(){
		if( $(this).val() == '' ) {
			$(this).val( $(this).attr('title') );
		}
	});
	
	$('#navigation > ul > li:first').addClass('first');
	$('.main-footer .menu').each(function() {
		$(this).find('span:last').remove();
	});
});
