$( document ).ready(function(){
	
	$('.dropdown .submenu ul').each( function(){
		var w = $( this ).width() + 'px'; 
		$( this ).css( {'width' : w} );
	});
	
	
	$( '.dropdown' ).mouseover( function() {
		$('.submenu ul').hide();
		$( this ).find('.submenu ul').show();
		
		$( this ).find('a:eq(0)').addClass( 'hover' );
	}).mouseout( function() {
		$( this ).find('.submenu ul').hide();
		$( this ).find('a:eq(0)').removeClass( 'hover' );
	});
	
	$( '.blink' )
		.focus( function(){
			if ( $( this).attr( 'value' ) == $( this).attr( 'title' ) )
				$( this ).attr({'value' : ''});
		})
		.blur( function(){
			if ( $( this).attr( 'value' ) == '' )
				$( this ).attr({'value' : $( this).attr( 'title' )});
		});
		
	
});