if( $( '.ie6' ).length < 1 ) {

	$this = $( '#mod_referencesflash' );
	
	$grid = $( '<span class="grid" />' );
	
	$ref = $this.find( '.ref' );
	
	$ref
		.prepend( $grid )
		.hover(
	
			function() {
				$( this ).find( '.grid' ).fadeOut();
			},
			function() {
				$( this ).find( '.grid' ).fadeIn();
			}
		
		);
		
}
