var $j = jQuery.noConflict();



$j( document ).ready( function(){
	
	$j('#dropnavigation li').hover(
		function(){ $j( this ).find('.sub-nav').show(); $j(this).addClass('hover'); },
		function(){ $j( this ).find('.sub-nav').hide(); $j(this).removeClass('hover'); }
	)
	
	$j('.email')
		.focus( function(){
			if( $j( this ).attr('value') == 'e-mail address' ) {
				$j( this ).attr({ 'value': '' });
				$j( this ).addClass('black-field');
			}
		})
		.blur( function(){
			if( $j( this ).attr('value') == '' ) {
				$j( this ).attr({ 'value': 'e-mail address' });
				$j( this ).removeClass('black-field');
			}
		});
})