jQuery( function( $ ) {
	$( '.gallery-link a' ).each( function() {
		var top_pos = Math.floor( $( this ).parent().height()/2 - 30 ),
			left_pos = Math.floor( $( this ).parent().width()/2 - 30 );

			this.target = '_blank';
			$( this ).prepend( $( '<span></span>' ).css( { top: top_pos + 'px', left: left_pos + 'px' } ) );
	} );
} );
