

$( document ).ready( function(){
	
	$('#dropnavigation>ul>li').hover(
		function(){ $( this ).find('.c-menu-level1').css('display','block'); $(this).addClass('hover'); },
		function(){ $( this ).find('.c-menu-level1').hide(); $(this).removeClass('hover'); }
	)
	
	$('.email')
		.focus( function(){
			if( $( this ).attr('value') == 'e-mail address' ) {
				$( this ).attr({ 'value': '' });
				$( this ).addClass('black-field');
			}
		})
		.blur( function(){
			if( $( this ).attr('value') == '' ) {
				$( this ).attr({ 'value': 'e-mail address' });
				$( this ).removeClass('black-field');
			}
		});
})
