$( document ).ready( function() {
	$( '#logos a' ).mouseover( function() {
		$( this ).stop(false,true).animate( { opacity: .4 }, 200 );
	} );
	$( '#logos a' ).mouseout( function() {
		$( this ).stop(false,true).animate( { opacity: .8 }, 200 );
	} );
	$( '#contact' ).mouseover( function() {
		$( this ).children().stop(false,true).animate( { opacity: 1 }, 200 );
	} );
	$( '#contact' ).mouseout( function() {
		$( this ).children().stop(false,true).animate( { opacity: 0 }, 200 );
	} );
} );
