$(function() {
	
	$('.marker-new').each(function(i) {
		var width 		= $(this).parent().width();
		var height 		= $(this).parent().height();
		var position 	= $(this).parent().position();
		var left 			= position.left + width;
		var top 			= position.top - 7;
		
		$(this).css('left', left+'px');
		$(this).css('top', top+'px');
		});
	
	});
