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' } ) );
	} );
	$( '.storycontent .leftthumb .post-location' ).hover( function() { 
		$( this ).find( '.post-thumb-map' ).show();
	}, function() {
		$( this ).find( '.post-thumb-map' ).hide();
	} );
		
} );

