(function($){
	$.fn.petersberg = function(options) {
		return this.each(function(){
    		
    		var container = $(this);
			var items = $(this).children();
			
			items.each(function(){
				var offset = $(this).offset().top - $(container).offset().top;
				if( offset == 0){
					$(this).css({ marginTop: Math.random()*options.maxMargin });
				}
				//				
			});

    	});
  	}

})(jQuery);
